import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ScheduleStatus } from "./schedule-status.js"; import { SDKValidationError } from "./sdk-validation-error.js"; /** * Confirmation of schedule cancellation */ export type CancelScheduleResponse = { /** * message is a confirmation message */ message?: string | undefined; status?: ScheduleStatus | undefined; }; /** @internal */ export declare const CancelScheduleResponse$inboundSchema: z.ZodMiniType; export declare function cancelScheduleResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancel-schedule-response.d.ts.map