//#region src/utils/session-storage.d.ts /** * Guarded sessionStorage access for resilience layers (redirect loop breaking, redirect-back state * mirroring). These layers must degrade to "no stored value" when storage is unavailable, instead * of breaking the auth flow they are trying to protect. */ declare function readSessionStorageItem(key: string): string | null; declare function writeSessionStorageItem(key: string, value: string): void; declare function removeSessionStorageItem(key: string): void; //#endregion export { readSessionStorageItem, removeSessionStorageItem, writeSessionStorageItem }; //# sourceMappingURL=session-storage.d.ts.map