import { WebPlugin } from '@capacitor/core'; import type { GoogleSignInPlugin, SignInWithGoogleResponse } from './definitions'; export declare class GoogleSignInWeb extends WebPlugin implements GoogleSignInPlugin { handleSignInButton(): Promise; restorePreviousSignIn(): Promise; signOut(): Promise; checkScopes(options: { scopes: string[]; }): Promise<{ value: boolean; }>; requestScopes(options: { scopes: string[]; }): Promise<{ value: boolean; }>; }