type Appendable = string | number | any[] | Record; export default class JSONStore { private path; private data; constructor(path: string); remove(key: string): void; clear(): void; destroy(): Promise; has(key: string): boolean; set(key: string, value: any): void; append(key: string, value: Appendable): void; get(key: string): any; load(): Promise; save(): Promise; download(): void; } export {};