import { z } from 'zod'; import type { WorkflowTimelineEntry } from '../../core/types.ts'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const getWorkflowTimelineInput: z.ZodObject<{ workflowId: z.ZodString; }, z.core.$strip>; export type GetWorkflowTimelineInput = z.infer; export type GetWorkflowTimelineOutput = WorkflowTimelineEntry[]; export declare const getWorkflowTimelineOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; }, GetWorkflowTimelineOutput, unknown>; export declare const getWorkflowTimelineRestBinding: UnknownRestBinding; export {};