export declare type TRowndContext = { access_token: string | null; auth: AuthContext; is_authenticated: boolean; is_initializing: boolean; firebase: { getIdToken: () => Promise; }; getAccessToken: (token?: string) => Promise; manageAccount: () => void; requestSignIn: (e?: RequestSignIn) => void; signOut: () => void; user: UserContext; }; declare type UserContext = { data: { user_id?: string; email?: string | null; phone?: string | null; [key: string]: any; }; set: (data: Record) => void; setValue: (key: string, value: any) => void; isLoading: boolean; }; declare type AuthContext = { access_token: string | null; app_id: string | null; is_verified_user?: boolean; }; export declare type RequestSignInMethods = 'google' | 'apple' | 'default' | 'guest' | 'passkey'; export declare type RequestSignInIntent = 'sign_in' | 'sign_up'; export declare type RequestSignIn = { method?: RequestSignInMethods; postSignInRedirect?: string; intent?: RequestSignInIntent; }; export declare function useRownd(): TRowndContext; export {};