import { BaseEncryptor } from "./base-encryptor"; export declare class BrowserEncryptor extends BaseEncryptor { protected md5(input: string): string; generateInitialisationVector(): Uint8Array; protected _encrypt(input: string, iv: Uint8Array, key: string): Promise<[Uint8Array, Uint8Array]>; protected _decrypt(cipher: Uint8Array, authTag: Uint8Array | undefined, iv: Uint8Array, key: string): Promise; } export default BrowserEncryptor;