import { JsonService } from "@web-atoms/core/dist/services/JsonService"; import { ISynchronousStorage } from "./Preferences"; export declare class SyncStorage implements ISynchronousStorage { private prefix; private storage; private jsonService; /** * */ constructor(prefix: string, storage: Storage, jsonService: JsonService); getItem(name: string, def?: T): T; setItem(name: string, value: T): void; removeItem(name: string): void; clearAll(): void; } //# sourceMappingURL=SyncStorage.d.ts.map