import * as core from 'webcrypto-core'; export declare class CryptoKey extends core.CryptoKey { extractable: boolean; type: KeyType; usages: KeyUsage[]; algorithm: KeyAlgorithm; constructor(algorithm: KeyAlgorithm, extractable: boolean, type: KeyType, usages: KeyUsage[]); }