/** * sm3 本体 */ export declare function sm3(array: any): never[]; export declare function hmac(input: any, key: any): never[]; declare const _default: { sm3: typeof sm3; hmac: typeof hmac; }; export default _default;