export declare const generateKey: () => Promise; export declare const importKey: (k: string) => Promise; export declare const encrypt: (identifier: string, keyStr: string, dataStr: string) => Promise; export declare const decrypt: (identifier: string, keyStr: string, encryptedBase64Str: string) => Promise;