export declare class SimpleStorage { version: number; constructor(); checkLocalExist(name: string): boolean; getAllLocalData(): any; getLocalData(name: any): any; removeLocalData(name: string): void; setLocalData(name: string, value: any): boolean; isJSON(value: string): boolean; parse(params: any): any; }