import { z } from 'zod'; export declare const findTasksSchema: z.ZodObject<{ status: z.ZodOptional>; workflow_type: z.ZodOptional; workflow_id: z.ZodOptional; origin_id: z.ZodOptional; limit: z.ZodDefault>; }, "strip", z.ZodTypeAny, { limit: number; status?: "pending" | "in_progress" | "completed" | "needs_intervention" | "failed" | undefined; workflow_type?: string | undefined; workflow_id?: string | undefined; origin_id?: string | undefined; }, { status?: "pending" | "in_progress" | "completed" | "needs_intervention" | "failed" | undefined; workflow_type?: string | undefined; workflow_id?: string | undefined; origin_id?: string | undefined; limit?: number | undefined; }>; export declare const findEscalationsSchema: z.ZodObject<{ status: z.ZodOptional>; role: z.ZodOptional; type: z.ZodOptional; priority: z.ZodOptional; limit: z.ZodDefault>; }, "strip", z.ZodTypeAny, { limit: number; role?: string | undefined; status?: "pending" | "resolved" | undefined; type?: string | undefined; priority?: number | undefined; }, { role?: string | undefined; status?: "pending" | "resolved" | undefined; type?: string | undefined; limit?: number | undefined; priority?: number | undefined; }>; export declare const getProcessSummarySchema: z.ZodObject<{ workflow_type: z.ZodOptional; limit: z.ZodDefault>; }, "strip", z.ZodTypeAny, { limit: number; workflow_type?: string | undefined; }, { workflow_type?: string | undefined; limit?: number | undefined; }>; export declare const getEscalationStatsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const getWorkflowTypesSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const getSystemHealthSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;