import { AuthService, LoginResponse } from './auth.service';
import { LoginDto } from './dto/login.dto';
export declare class AuthController {
    private authService;
    constructor(authService: AuthService);
    login(dto: LoginDto): Promise<LoginResponse>;
    selectDatabase(body: {
        dbName: string;
    }): Promise<{
        success: boolean;
        dbName: string;
        message: string;
    }>;
}
