import { AESEncryptionResponse } from "./types"; export declare class AESCrypto { private static readonly ALGORITHM; private static readonly IV_LENGTH; private static prepareKey; static encrypt(data: string, key: string): AESEncryptionResponse; static decrypt(encryptedData: AESEncryptionResponse, key: string): string; }