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