import * as z from "zod"; export type PostWebTomarkdownAsyncRequest = { url: string; }; export declare const PostWebTomarkdownAsyncRequest$zodSchema: z.ZodType; /** * 请求参数错误 */ export type PostWebTomarkdownAsyncBadRequestResponseBody = { error?: string | undefined; message?: string | undefined; code?: number | undefined; }; export declare const PostWebTomarkdownAsyncBadRequestResponseBody$zodSchema: z.ZodType; /** * 任务已提交成功,返回任务ID */ export type PostWebTomarkdownAsyncResponseBody = { task_id?: string | undefined; status?: string | undefined; url?: string | undefined; created_at?: string | undefined; message?: string | undefined; }; export declare const PostWebTomarkdownAsyncResponseBody$zodSchema: z.ZodType; export type PostWebTomarkdownAsyncResponse = PostWebTomarkdownAsyncResponseBody | PostWebTomarkdownAsyncBadRequestResponseBody; export declare const PostWebTomarkdownAsyncResponse$zodSchema: z.ZodType; //# sourceMappingURL=postwebtomarkdownasyncop.d.ts.map