declare const Storage: { async(): boolean; getItem(path: string): string | null; getItemAsync(path: string): Promise; setItem(path: string, value: string): void; setItemAsync(path: string, value: string): Promise; removeItem(path: string): void; removeItemAsync(path: string): Promise; getAllKeys(): string[]; getAllKeysAsync(): Promise; generatePath(path: string): string; _clear(): void; }; export default Storage;