import { ConfigService } from "@nestjs/config"; import { FastifyReply } from "fastify"; import { BaseConfigInterface } from "../../../config/interfaces"; import { AuthGoogleService } from "../services/auth.google.service"; export declare class AuthGoogleController { private readonly authGoogleService; private readonly configService; constructor(authGoogleService: AuthGoogleService, configService: ConfigService); private get googleConfig(); loginWithGoogle(reply: FastifyReply, inviteCode?: string, referralCode?: string): Promise; callbackGoogle(reply: FastifyReply, code: string, state: string): Promise; } //# sourceMappingURL=auth.google.controller.d.ts.map