import { Encrypted, EncryptionKey } from '../typings'; export declare const encrypt: (text: string, key: EncryptionKey) => Encrypted; export declare const decrypt: (ciphertext: string, iv: string, tag: string, key: EncryptionKey) => string;