export declare const createClient: () => { auth: { signInWithOtp: () => Promise<{ data: null; error: null; }>; signInWithOAuth: () => Promise<{ data: null; error: null; }>; signInAnonymously: () => Promise<{ data: { user: { id: string; is_anonymous: boolean; }; }; error: null; }>; getUser: () => Promise<{ data: { user: any; }; error: null; }>; setSession: () => Promise<{ data: null; error: null; }>; verifyOtp: () => Promise<{ data: null; error: null; }>; updateUser: () => Promise<{ data: null; error: null; }>; signOut: () => Promise<{ error: null; }>; }; from: () => any; channel: () => { on: () => /*elided*/ any; subscribe: () => Promise<{ data: { subscription: { unsubscribe: () => undefined; }; }; }>; }; removeChannel: () => undefined; }; //# sourceMappingURL=client.d.ts.map