import { z } from 'zod'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const cancelScheduleInput: z.ZodObject<{ scheduleId: z.ZodString; }, z.core.$strip>; declare const cancelScheduleOutput: z.ZodUndefined; export type CancelScheduleInput = z.infer; export type CancelScheduleOutput = z.infer; export declare const cancelScheduleOperation: import("../operation-catalog.ts").OperationDefinition<{ scheduleId: string; }, undefined, unknown>; export declare const cancelScheduleRestBinding: UnknownRestBinding; export {};