export declare type OneTapOptions = { automatic?: boolean; clientId: string; context?: "signin" | "signup" | "use"; fallback?: { buttonId: string; size?: "small" | "medium" | "large"; }; reauthenticate?: number | string | false; }; export declare type OneTapContext = { headers?: { authorization: string; }; isSignedIn: boolean; profile?: Profile; signOut: () => void; token: string | null; }; export declare type Profile = { email: string; email_verified: boolean; iss: "https://accounts.google.com"; picture: string; sub: string; given_name: string; family_name: string; name: string; aud: string; iat: number; exp: number; hd?: string; };