export declare class BaseCache {
storage: Storage;
setItem(key: string, value: any, isStringify?: boolean): void;
getItem(key: string, isParse?: boolean): any | null;
removeItem(key: string): void;
clear(): void;
key(index: number): string | null;
length(): number;
}