import { z } from 'zod'; import { RunCreatedEventSchema, RunStartedEventSchema, RunSucceededEventSchema, RunFailedEventSchema, RunCanceledEventSchema, NodeWaitingEventSchema, NodeRetryingEventSchema, NodeSucceededEventSchema, NodeFailedEventSchema, NodeSkippedEventSchema, NodeCanceledEventSchema, ActivityRunningEventSchema, ActivityWaitingEventSchema, ActivityTimedOutEventSchema, LoopStartedEventSchema, LoopIterationStartedEventSchema, LoopIterationFinishedEventSchema, LoopFinishedEventSchema, ConditionEvaluatedEventSchema, LeaseSignedEventSchema, AttemptCreatedEventSchema, BackoffScheduledEventSchema, BackoffElapsedEventSchema, EffectAttemptedEventSchema, ActivitySucceededEventSchema, ActivityFailedEventSchema, WaitCreatedEventSchema, WaitResolvedEventSchema, WaitDeadlineExceededEventSchema, CancelRequestedEventSchema, CancelDeliveredEventSchema, ActivityCanceledEventSchema, WorkerLostEventSchema, ResumeStartedEventSchema, ReconcileResultEventSchema } from './schema.js'; export type RunCreatedEvent = z.infer; export type RunStartedEvent = z.infer; export type RunSucceededEvent = z.infer; export type RunFailedEvent = z.infer; export type RunCanceledEvent = z.infer; export type NodeWaitingEvent = z.infer; export type NodeRetryingEvent = z.infer; export type NodeSucceededEvent = z.infer; export type NodeFailedEvent = z.infer; export type NodeSkippedEvent = z.infer; export type NodeCanceledEvent = z.infer; export type ActivityRunningEvent = z.infer; export type ActivityWaitingEvent = z.infer; export type ActivityTimedOutEvent = z.infer; export type LoopStartedEvent = z.infer; export type LoopIterationStartedEvent = z.infer; export type LoopIterationFinishedEvent = z.infer; export type LoopFinishedEvent = z.infer; export type ConditionEvaluatedEvent = z.infer; export type LeaseSignedEvent = z.infer; export type AttemptCreatedEvent = z.infer; export type BackoffScheduledEvent = z.infer; export type BackoffElapsedEvent = z.infer; export type EffectAttemptedEvent = z.infer; export type ActivitySucceededEvent = z.infer; export type ActivityFailedEvent = z.infer; export type WaitCreatedEvent = z.infer; export type WaitResolvedEvent = z.infer; export type WaitDeadlineExceededEvent = z.infer; export type CancelRequestedEvent = z.infer; export type CancelDeliveredEvent = z.infer; export type ActivityCanceledEvent = z.infer; export type WorkerLostEvent = z.infer; export type ResumeStartedEvent = z.infer; export type ReconcileResultEvent = z.infer; //# sourceMappingURL=types.d.ts.map