/** * Storage location constants for browser storage types */ export declare enum StorageLocations { SessionStorage = "sessionStorage", LocalStorage = "localStorage" } export type StorageLocation = `${StorageLocations}`; //# sourceMappingURL=storageLocations.d.ts.map