import { z } from 'zod'; /** * Zod schema for the ExecuteWorkflowRequest model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const executeWorkflowRequest: z.ZodLazy>; key: z.ZodString; }, "strip", z.ZodTypeAny, { key: string; input?: any; }, { key: string; input?: any; }>>; /** * * @typedef {ExecuteWorkflowRequest} executeWorkflowRequest * @property {any} - Optional JSON payload that will be passed as the workflow input context. * @property {string} - The unique workflow key to execute (e.g. integration.stripe.charge.succeeded). */ export type ExecuteWorkflowRequest = z.infer; /** * Zod schema for mapping API responses to the ExecuteWorkflowRequest application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const executeWorkflowRequestResponse: z.ZodLazy>; key: z.ZodString; }, "strip", z.ZodTypeAny, { key: string; input?: any; }, { key: string; input?: any; }>, { input: any; key: string; }, { key: string; input?: any; }>>; /** * Zod schema for mapping the ExecuteWorkflowRequest application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const executeWorkflowRequestRequest: z.ZodLazy>; key: z.ZodString; }, "strip", z.ZodTypeAny, { key: string; input?: any; }, { key: string; input?: any; }>, { input: any; key: string; }, { key: string; input?: any; }>>; //# sourceMappingURL=execute-workflow-request.d.ts.map