import * as z from "zod"; export type GetTextMd5Request = { text: string; }; export declare const GetTextMd5Request$zodSchema: z.ZodType; export type GetTextMd5Details = {}; export declare const GetTextMd5Details$zodSchema: z.ZodType; /** * 缺少text参数 */ export type GetTextMd5BadRequestResponseBody = { code?: string | undefined; details?: GetTextMd5Details | undefined; message?: string | undefined; }; export declare const GetTextMd5BadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应 */ export type GetTextMd5ResponseBody = { md5?: string | undefined; }; export declare const GetTextMd5ResponseBody$zodSchema: z.ZodType; export type GetTextMd5Response = GetTextMd5ResponseBody | GetTextMd5BadRequestResponseBody; export declare const GetTextMd5Response$zodSchema: z.ZodType; //# sourceMappingURL=gettextmd5op.d.ts.map