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

declare function deriveKey(publicKey: CryptoKey, privateKey: CryptoKey, algorithm: string, keyLength: number, apu?: Uint8Array, apv?: Uint8Array): Promise<Uint8Array<ArrayBuffer>>;
declare function allowed(key: CryptoKey): boolean;

export { allowed, deriveKey };
