export class RSACipher { static generateKey(algorithm: any, extractable: any, _keyUsages: any): Promise<{ privateKey: RSACipher; }>; static importKey(key: any, _algorithm: any, extractable: any, keyUsages: any): Promise; _keyLength: number; _keyBytes: number; _n: Uint8Array | Uint8Array | null; _e: Uint8Array | Uint8Array | null; _d: Uint8Array | null; _nBigInt: any; _eBigInt: any; _dBigInt: any; _extractable: boolean; get algorithm(): { name: string; }; _base64urlDecode(data: any): any[]; _padArray(arr: any, length: any): Uint8Array; _generateKey(algorithm: any, extractable: any): Promise; _importKey(key: any, extractable: any): Promise; encrypt(_algorithm: any, message: any): Promise | null>; decrypt(_algorithm: any, message: any): Promise | null>; exportKey(): Promise<{ n: Uint8Array | Uint8Array | null; e: Uint8Array | Uint8Array | null; d: Uint8Array | null; }>; } //# sourceMappingURL=rsa.d.ts.map