export declare class Encryptor {
    private key;
    constructor(password: string);
    encrypt(data: string): string;
    decrypt(data: string): string;
}
