export default class RSACryptoModule { private publicKey; private privateKey; constructor(publicKey: string, privateKey: string); encryptWithPublicKey(data: string): string; decryptWithPrivateKey(encryptedData: string): string; } //# sourceMappingURL=RSACryptoModule.d.ts.map