import { CryptoKey } from '../../key'; import type { AsmCryptoRsaKey } from './crypto'; export declare class RsaCryptoKey extends CryptoKey { algorithm: RsaHashedKeyAlgorithm; data: AsmCryptoRsaKey; constructor(algorithm: RsaHashedKeyAlgorithm, extractable: boolean, type: KeyType, usages: KeyUsage[], data: AsmCryptoRsaKey); }