/** * Storage utility functions. * * Session state must be isolated per-tab to avoid conflicts across multiple tabs. * We therefore prefer `sessionStorage` and fall back to `localStorage` if needed. */ export declare const getStoredItem: (key: string, parse?: boolean) => any; export declare const setStoredItem: (key: string, value: any) => void; export declare const removeStoredItem: (key: string) => void; //# sourceMappingURL=storage.d.ts.map