export default class Store { private readonly prefix; private static getStorage; static isStorageAvailable(): boolean; constructor(name: string); private getFullKey; private static isQuotaExceededError; private setValue; setTemporary(key: string, value: T): void; setPermanent(key: string, value: T): void; get(key: string): T | undefined; getAll(): Record; isPermanent(key: string): boolean; remove(...keys: string[]): void; clear(): void; } //# sourceMappingURL=Store.d.ts.map