import { AuthService } from "./auth.service"; import { Response } from "express"; import { LoginWithGoogleResponseDto } from "./dto/login-with-google-response.dto"; import { CredentialDto } from "./dto/credential.dto"; export declare class AuthController { private readonly authService; constructor(authService: AuthService); loginWithGoogle(credential: CredentialDto): Promise; getGoogleProfileImage(url: string, res: Response): Promise; }