export declare function aesEncrypt(key: Uint8Array, plainText: Uint8Array): Uint8Array; export declare function aesDecrypt(key: Uint8Array, cipherText: Uint8Array): Uint8Array; export declare function deriveKey(master: Uint8Array): Uint8Array;