import { z } from 'zod'; import type { WorkflowEvent } from '../../core/types.ts'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const getWorkflowEventsInput: z.ZodObject<{ workflowId: z.ZodString; }, z.core.$strip>; export type GetWorkflowEventsInput = z.infer; export type GetWorkflowEventsOutput = { events: WorkflowEvent[]; }; export declare const getWorkflowEventsOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; }, GetWorkflowEventsOutput, unknown>; export declare const getWorkflowEventsRestBinding: UnknownRestBinding; export {};