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

declare function encrypt(alg: string, key: CryptoKey, cek: Uint8Array): Promise<Uint8Array<ArrayBuffer>>;
declare function decrypt(alg: string, key: CryptoKey, encryptedKey: Uint8Array): Promise<Uint8Array<ArrayBuffer>>;

export { decrypt, encrypt };
