import { TransactionHandlerType } from "@medusajs/framework/utils"; import { z } from "@medusajs/framework/zod"; export type AdminGetWorkflowExecutionDetailsParamsType = z.infer; export declare const AdminGetWorkflowExecutionDetailsParams: z.ZodObject<{ fields: z.ZodOptional; }, "strip", z.ZodTypeAny, { fields?: string | undefined; }, { fields?: string | undefined; }>; export type AdminGetWorkflowExecutionsParamsType = z.infer; export declare const AdminGetWorkflowExecutionsParams: z.ZodObject<{ fields: z.ZodOptional; } & { offset: z.ZodEffects>, number, unknown>; limit: z.ZodEffects>, number, unknown>; order: z.ZodOptional | z.ZodDefault>; with_deleted: z.ZodEffects, boolean | undefined, unknown>; } & { q: z.ZodOptional; transaction_id: z.ZodOptional]>>; workflow_id: z.ZodOptional]>>; state: z.ZodOptional]>>; created_at: z.ZodOptional]>>; }, "strip", z.ZodTypeAny, { offset: number; limit: number; order?: string | undefined; fields?: string | undefined; created_at?: any; with_deleted?: boolean | undefined; q?: string | undefined; workflow_id?: string | string[] | undefined; transaction_id?: string | string[] | undefined; state?: string | string[] | undefined; }, { order?: string | undefined; fields?: string | undefined; created_at?: any; offset?: unknown; limit?: unknown; with_deleted?: unknown; q?: string | undefined; workflow_id?: string | string[] | undefined; transaction_id?: string | string[] | undefined; state?: string | string[] | undefined; }>; export type AdminCreateWorkflowsRunType = z.infer; export declare const AdminCreateWorkflowsRun: z.ZodObject<{ input: z.ZodOptional; transaction_id: z.ZodOptional; }, "strip", z.ZodTypeAny, { input?: any; transaction_id?: string | undefined; }, { input?: any; transaction_id?: string | undefined; }>; export type AdminCreateWorkflowsAsyncResponseType = z.infer; export declare const AdminCreateWorkflowsAsyncResponse: z.ZodObject<{ transaction_id: z.ZodString; step_id: z.ZodString; response: z.ZodOptional; compensate_input: z.ZodOptional; action: z.ZodOptional>, TransactionHandlerType | undefined, unknown>>; }, "strip", z.ZodTypeAny, { step_id: string; transaction_id: string; action?: TransactionHandlerType | undefined; response?: any; compensate_input?: any; }, { step_id: string; transaction_id: string; action?: unknown; response?: any; compensate_input?: any; }>; //# sourceMappingURL=validators.d.ts.map