/// import { SupabaseClient, User } from '@supabase/supabase-js'; import { UserFetcher, UserState } from '../types'; export interface Props { supabaseClient: SupabaseClient; callbackUrl?: string; profileUrl?: string; user?: User; fetcher?: UserFetcher; autoRefreshToken?: boolean; [propName: string]: any; } export declare const UserProvider: (props: Props) => JSX.Element; export declare const useUser: () => UserState; //# sourceMappingURL=UserProvider.d.ts.map