export declare const AUTH_STORAGE_UPDATED_EVENT = "auth-ui:storage-updated"; export declare const AUTH_STORAGE_CLEARED_EVENT = "auth-ui:storage-cleared"; export type AuthStorageEventDetail = { key: string; }; /** Notify listeners (e.g. `AuthProvider`) that tokens were merged into localStorage. */ export declare function notifyAuthStorageUpdated(key: string): void; /** Notify listeners that auth was removed from localStorage (logout / invalid refresh). */ export declare function notifyAuthStorageCleared(key: string): void; //# sourceMappingURL=authStorageEvents.d.ts.map