import { Response } from 'express';
import { ConfigService } from '@nestjs/config';
import { AuthService } from './auth.service';
export declare class AuthController {
    private authService;
    private config;
    private readonly logger;
    constructor(authService: AuthService, config: ConfigService);
    googleAuth(): Promise<void>;
    googleCallback(req: {
        user: import('./strategies/google.strategy').GoogleUserPayload;
    }, res: Response): Promise<void>;
}
