declare const LocalDatastoreController: { fromPinWithName(name: string): Promise; pinWithName(name: string, value: any): Promise; unPinWithName(name: string): Promise; getAllContents(): Promise; getRawStorage(): Promise; clear(): Promise; }; export default LocalDatastoreController;