import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkflowControllerGetWorkflowStepDataRequest = { workflowId: string; stepId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type WorkflowControllerGetWorkflowStepDataResponse = { headers: { [k: string]: Array; }; result: components.StepResponseDto; }; /** @internal */ export type WorkflowControllerGetWorkflowStepDataRequest$Outbound = { workflowId: string; stepId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const WorkflowControllerGetWorkflowStepDataRequest$outboundSchema: z.ZodType; export declare function workflowControllerGetWorkflowStepDataRequestToJSON(workflowControllerGetWorkflowStepDataRequest: WorkflowControllerGetWorkflowStepDataRequest): string; /** @internal */ export declare const WorkflowControllerGetWorkflowStepDataResponse$inboundSchema: z.ZodType; export declare function workflowControllerGetWorkflowStepDataResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowcontrollergetworkflowstepdata.d.ts.map