import { CryptoKey } from '../types.d.js';

declare function wrap(alg: string, key: CryptoKey | Uint8Array, cek: Uint8Array): Promise<Uint8Array<ArrayBuffer>>;
declare function unwrap(alg: string, key: CryptoKey | Uint8Array, encryptedKey: Uint8Array): Promise<Uint8Array<ArrayBuffer>>;

export { unwrap, wrap };
