/** * Safe localStorage wrapper for SSR compatibility */ export declare const safeLocalStorage: { getItem: (key: string) => string | null; setItem: (key: string, value: string) => void; removeItem: (key: string) => void; }; //# sourceMappingURL=storage.d.ts.map