declare const StorageController: { async: number; getItemAsync(path: string): Promise; setItemAsync(path: string, value: string): Promise; removeItemAsync(path: string): Promise; getAllKeysAsync(): Promise; multiGet(keys: string[]): Promise; multiRemove(keys: string[]): Promise; clear(): Promise; }; export default StorageController;