import { CacheStore } from '../../types';
export declare class PersistentCache implements CacheStore {
    private storage;
    constructor(storage?: Storage);
    private serializeValue;
    private deserializeValue;
    get(key: string): any;
    set(key: string, value: any): void;
    delete(key: string): void;
    clear(): void;
}
