export declare class AESCipher {
    key: Buffer;
    constructor(key: string);
    decrypt(encrypt: string): string;
}
