import { AsyncStorage } from "@aracna/core"; export declare function SecureStorage(password: string): AsyncStorage; export declare function isStorageEncrypted(): Promise<{ exists: boolean; encrypted: boolean; }>; export declare function encryptStorage(password: string): Promise;