import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkflowRunOutputModel, WorkflowRunOutputModel$Outbound } from "./workflowrunoutputmodel.js"; import { WorkflowRunStatus } from "./workflowrunstatus.js"; export type WorkflowRunWebhookBody = { runId: string; status: WorkflowRunStatus; liveStatus: string | null; progress?: number | undefined; outputs?: Array | undefined; }; /** @internal */ export declare const WorkflowRunWebhookBody$inboundSchema: z.ZodType; /** @internal */ export type WorkflowRunWebhookBody$Outbound = { run_id: string; status: string; live_status: string | null; progress: number; outputs?: Array | undefined; }; /** @internal */ export declare const WorkflowRunWebhookBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace WorkflowRunWebhookBody$ { /** @deprecated use `WorkflowRunWebhookBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WorkflowRunWebhookBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WorkflowRunWebhookBody$Outbound` instead. */ type Outbound = WorkflowRunWebhookBody$Outbound; } export declare function workflowRunWebhookBodyToJSON(workflowRunWebhookBody: WorkflowRunWebhookBody): string; export declare function workflowRunWebhookBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowrunwebhookbody.d.ts.map