export declare class AppStorage { private store; constructor(location?: string); get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; clear(): Promise; close(): Promise; } //# sourceMappingURL=app-storage.d.ts.map