import { z } from 'zod'; import { TriggerPayload } from '../../engine'; import { StepOutput } from './step-output'; export declare enum ExecutionType { BEGIN = "BEGIN", RESUME = "RESUME" } export type ExecutionState = { steps: Record; tags: string[]; }; export declare const ExecutionState: z.ZodObject<{ steps: z.ZodRecord; tags: z.ZodArray; }, z.core.$strip>; export type ExecutioOutputFile = { executionState: ExecutionState; }; export type ResumePayload = TriggerPayload; //# sourceMappingURL=execution-output.d.ts.map