/** 使用 aes256 算法进行加密 */
export declare const encrypt: (text: string) => string;
/** 使用 aes256 算法进行解密 */
export declare const decrypt: (text: string) => string;
