/** * A static singleton class which provides RSA encryption methods. */ export declare class RSA { /** * Encrypts the text with a hard-coded public key. * @param msg The text to encrypt. */ static encrypt(msg: string): string; } //# sourceMappingURL=rsa.d.ts.map