import { ConfigService } from '@nestjs/config';
import { Request, Response } from 'express';
import { AuthService } from './auth.service';
import { LoginDto } from './dto/login.dto';
export declare class AuthController {
    private readonly authService;
    private readonly config;
    constructor(authService: AuthService, config: ConfigService);
    login(dto: LoginDto, res: Response): Promise<{
        ok: true;
    }>;
    logout(res: Response): {
        ok: true;
    };
    me(req: Request): {
        ok: true;
        sub: string;
    };
    private isProd;
}
