import type { Session } from '@supabase/supabase-js'; export declare class CookieStorage { private readonly session; constructor(session: Session | null); getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; }