import type { AesOptions } from '../types';
/**
 * 使用 AES 加密文本（默认使用 CBC 模式）
 * @param text 明文
 * @param options 配置项
 */
export declare function encrypt(text: string, options: AesOptions): string;
/**
 * 使用 AES 解密文本
 * @param encryptedText 密文
 * @param options 配置项
 */
export declare function decrypt(encryptedText: string, options: AesOptions): string;
