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