import { z } from 'zod'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const cancelWorkflowInput: z.ZodObject<{ workflowId: z.ZodString; }, z.core.$strip>; declare const cancelWorkflowOutput: z.ZodUndefined; export type CancelWorkflowInput = z.infer; export type CancelWorkflowOutput = z.infer; export declare const cancelWorkflowOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; }, undefined>; export declare const cancelWorkflowRestBinding: UnknownRestBinding; export {};