import * as z from "zod/v4"; import { OpenEnum } from "../../types/enums.js"; export declare const WorkflowExecutionStatus: { readonly Running: "RUNNING"; readonly Completed: "COMPLETED"; readonly Failed: "FAILED"; readonly Canceled: "CANCELED"; readonly Terminated: "TERMINATED"; readonly ContinuedAsNew: "CONTINUED_AS_NEW"; readonly TimedOut: "TIMED_OUT"; readonly RetryingAfterError: "RETRYING_AFTER_ERROR"; }; export type WorkflowExecutionStatus = OpenEnum; /** @internal */ export declare const WorkflowExecutionStatus$inboundSchema: z.ZodType; /** @internal */ export declare const WorkflowExecutionStatus$outboundSchema: z.ZodType; //# sourceMappingURL=workflowexecutionstatus.d.ts.map