export function encryptAES(plainText: string, secret: string): string;
export function decryptAES(encryptedText: string, secret: string): string;
