declare const encryptData: (val: unknown) => string | null;
declare const decryptData: <T>(val: string) => T | null;
declare const encryptWithSecretKey: (data: unknown, secretKey: string) => string;
declare const decryptWithSecretKey: <T = any>(encryptedData: string, secretKey: string) => T;
declare const aesDecrypt: <T = any>(data: string, secretKey: string) => T | null;

export { aesDecrypt, decryptData, decryptWithSecretKey, encryptData, encryptWithSecretKey };
