import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ScheduleDefinitionOutput } from "./scheduledefinitionoutput.js"; export type WorkflowScheduleListResponse = { /** * A list of workflow schedules */ schedules: Array; }; /** @internal */ export declare const WorkflowScheduleListResponse$inboundSchema: z.ZodType; export declare function workflowScheduleListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workflowschedulelistresponse.d.ts.map