interface GoogleGetAccessTokenFunctionParams { clientId: string; triggerPrompt?: boolean; setLoading?: React.Dispatch>; } /** * Login with Google Function * =============================================================================== * @description This function uses google identity api to login a user with datasquirel */ export default function getAccessToken(params: GoogleGetAccessTokenFunctionParams): Promise; /** * # Google Login Function */ export declare function googleLogin({ google, clientId, setLoading, triggerPrompt, }: GoogleGetAccessTokenFunctionParams & { google: any; }): Promise; export {};