export default class SpyLocalCache {
    private readonly option;
    private storage;
    private timer;
    private tmpList;
    constructor(option?: any);
    init(): void;
    load(): void;
    addLog(info: any): void;
    getData(cb: any): void;
    save(): void;
    flushLog(): void;
    zip(str: string): {
        codes: any;
        result: string;
    };
    unzip(str: string, codes?: any): string;
}
