/** * Safe localStorage wrapper that gracefully handles sandboxed iframes, * restrictive CSP, and other environments where localStorage is unavailable. */ export declare function getItem(key: string): string | null; export declare function setItem(key: string, value: string): void; export declare function removeItem(key: string): void;