interface LoginWithGoogleOptions {
    clientId: string;
    clientSecret: string;
    redirectUrl: string;
    authCode: string;
}
export declare function loginWithGoogle(options: LoginWithGoogleOptions): Promise<any>;
export {};
