import * as z from "zod"; export type GetWebTomarkdownAsyncStatusRequest = { task_id: string; }; export declare const GetWebTomarkdownAsyncStatusRequest$zodSchema: z.ZodType; /** * 任务不存在或已过期 */ export type GetWebTomarkdownAsyncStatusNotFoundResponseBody = { error?: string | undefined; message?: string | undefined; code?: number | undefined; }; export declare const GetWebTomarkdownAsyncStatusNotFoundResponseBody$zodSchema: z.ZodType; export type GetWebTomarkdownAsyncStatus4 = { task_id?: string | undefined; status?: string | undefined; url?: string | undefined; progress?: number | undefined; created_at?: string | undefined; started_at?: string | undefined; completed_at?: string | undefined; duration?: number | undefined; error?: string | undefined; }; export declare const GetWebTomarkdownAsyncStatus4$zodSchema: z.ZodType; export type GetWebTomarkdownAsyncStatusResult = { markdown?: string | undefined; size?: number | undefined; }; export declare const GetWebTomarkdownAsyncStatusResult$zodSchema: z.ZodType; export type GetWebTomarkdownAsyncStatus3 = { task_id?: string | undefined; status?: string | undefined; url?: string | undefined; progress?: number | undefined; created_at?: string | undefined; started_at?: string | undefined; completed_at?: string | undefined; duration?: number | undefined; result?: GetWebTomarkdownAsyncStatusResult | undefined; }; export declare const GetWebTomarkdownAsyncStatus3$zodSchema: z.ZodType; export type GetWebTomarkdownAsyncStatus2 = { task_id?: string | undefined; status?: string | undefined; url?: string | undefined; progress?: number | undefined; created_at?: string | undefined; started_at?: string | undefined; elapsed?: number | undefined; message?: string | undefined; }; export declare const GetWebTomarkdownAsyncStatus2$zodSchema: z.ZodType; export type GetWebTomarkdownAsyncStatus1 = { task_id?: string | undefined; status?: string | undefined; url?: string | undefined; progress?: number | undefined; created_at?: string | undefined; message?: string | undefined; }; export declare const GetWebTomarkdownAsyncStatus1$zodSchema: z.ZodType; /** * 成功获取任务状态(包含各种状态的响应) */ export type GetWebTomarkdownAsyncStatusResponseBody = GetWebTomarkdownAsyncStatus1 | GetWebTomarkdownAsyncStatus2 | GetWebTomarkdownAsyncStatus3 | GetWebTomarkdownAsyncStatus4; export declare const GetWebTomarkdownAsyncStatusResponseBody$zodSchema: z.ZodType; export type GetWebTomarkdownAsyncStatusResponse = GetWebTomarkdownAsyncStatus1 | GetWebTomarkdownAsyncStatus2 | GetWebTomarkdownAsyncStatus3 | GetWebTomarkdownAsyncStatus4 | GetWebTomarkdownAsyncStatusNotFoundResponseBody; export declare const GetWebTomarkdownAsyncStatusResponse$zodSchema: z.ZodType; //# sourceMappingURL=getwebtomarkdownasyncstatusop.d.ts.map