import type { EncryptDecryptAlgorithmParams } from '../types'; import type { DecryptOptions } from './types'; declare function decrypt(ciphertext: ArrayBuffer | string, key: CryptoKey, algorithm: EncryptDecryptAlgorithmParams, options?: DecryptOptions): Promise; export default decrypt;