import type { User } from '@supabase/supabase-js'; export declare type UserFetcher = (url: string) => Promise<{ user: User | null; accessToken: string | null; error?: string | null; }>; export declare type UserState = { user: User | null; accessToken: string | null; error?: Error; isLoading: boolean; checkSession: () => Promise; }; //# sourceMappingURL=types.d.ts.map