export declare class CryptoUtil {
    encrypt(message: string, secretKey: string): string;
    decrypt(utf8CipherText: string, secretKey: string): string;
}
export declare const cryptoUtil: CryptoUtil;
