import { z } from 'zod'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const resumeWorkflowInput: z.ZodObject<{ workflowId: z.ZodString; }, z.core.$strip>; declare const resumeWorkflowOutput: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export type ResumeWorkflowInput = z.infer; export type ResumeWorkflowOutput = z.infer; export declare const resumeWorkflowOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; }, { id: string; }>; export declare const resumeWorkflowRestBinding: UnknownRestBinding; export {};