import JSEncrypt from 'jsencrypt';
import type { IJSEncryptOptions } from 'jsencrypt/lib/JSEncrypt';
export default class JSEncryptExt extends JSEncrypt {
    constructor(options?: IJSEncryptOptions);
    encrypt(str: string): string | false;
    decrypt(cipherText: string): string | false;
}
