declare function getGoogleOAuthURL(state: string): string;
declare function handleGoogleCallback(code: string): Promise<{
    id: any;
    email: any;
    name: any;
    avatar: any;
    provider: string;
}>;

export { getGoogleOAuthURL, handleGoogleCallback };
