/**
 * SM4 加密（ECB模式，默认输出hex字符串）
 */
export declare function encrypt(text: string, key: string): string;
/**
 * SM4 解密
 */
export declare function decrypt(encrypted: string, key: string): string;
