import * as z from "zod"; /** * 包含待校验文本 'text' 和哈希值 'hash' 的JSON对象 */ export type PostTextMd5VerifyRequest = { hash: string; text: string; }; export declare const PostTextMd5VerifyRequest$zodSchema: z.ZodType; export type PostTextMd5VerifyDetails = {}; export declare const PostTextMd5VerifyDetails$zodSchema: z.ZodType; /** * 无效的请求参数 */ export type PostTextMd5VerifyBadRequestResponseBody = { code?: string | undefined; details?: PostTextMd5VerifyDetails | undefined; message?: string | undefined; }; export declare const PostTextMd5VerifyBadRequestResponseBody$zodSchema: z.ZodType; /** * 成功响应 */ export type PostTextMd5VerifyResponseBody = { match?: boolean | undefined; }; export declare const PostTextMd5VerifyResponseBody$zodSchema: z.ZodType; export type PostTextMd5VerifyResponse = PostTextMd5VerifyResponseBody | PostTextMd5VerifyBadRequestResponseBody; export declare const PostTextMd5VerifyResponse$zodSchema: z.ZodType; //# sourceMappingURL=posttextmd5verifyop.d.ts.map