import type { GoTrueClientOptions } from '@supabase/supabase-js'; import type { RequestEvent } from '@sveltejs/kit'; import type { CookieOptions } from '../types/index.js'; interface StorageAdapter extends Exclude { } export declare class CookieStorage implements StorageAdapter { private readonly event; constructor(event: Pick & CookieOptions); getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; } export {};