///
import { KeyObject } from 'crypto';
import type { EncryptDecryptAlgorithmParams } from '../../types';
declare function _decryptRsaOaep(ciphertext: Buffer, key: KeyObject, algorithm: EncryptDecryptAlgorithmParams): Promise;
export default _decryptRsaOaep;