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

declare function checkSigCryptoKey(key: CryptoKey, alg: string, usage: KeyUsage): void;
declare function checkEncCryptoKey(key: CryptoKey, alg: string, usage?: KeyUsage): void;

export { checkEncCryptoKey, checkSigCryptoKey };
