import * as z from "zod"; export type PostTextMd5Request = { text: string; }; export declare const PostTextMd5Request$zodSchema: z.ZodType; export type PostTextMd5Details = {}; export declare const PostTextMd5Details$zodSchema: z.ZodType; /** * 缺少text参数 */ export type PostTextMd5BadRequestResponseBody = { code?: string | undefined; details?: PostTextMd5Details | undefined; message?: string | undefined; }; export declare const PostTextMd5BadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应 */ export type PostTextMd5ResponseBody = { md5?: string | undefined; }; export declare const PostTextMd5ResponseBody$zodSchema: z.ZodType; export type PostTextMd5Response = PostTextMd5ResponseBody | PostTextMd5BadRequestResponseBody; export declare const PostTextMd5Response$zodSchema: z.ZodType; //# sourceMappingURL=posttextmd5op.d.ts.map