import { GoogleSignInResult, GoogleSignInError } from '../index'; export interface UseGoogleSignInReturn { signIn: () => Promise; signOut: () => Promise; isLoading: boolean; error: GoogleSignInError | null; user: GoogleSignInResult | null; } export declare function useGoogleSignIn(): UseGoogleSignInReturn;