import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AgentSchedule, AgentSchedule$Outbound } from "./agentschedule.js"; export declare const AgentScheduleListObject: { readonly List: "list"; }; export type AgentScheduleListObject = ClosedEnum; export type AgentScheduleList = { object: AgentScheduleListObject; data: Array; firstId: string | null; lastId: string | null; hasMore: boolean; }; /** @internal */ export declare const AgentScheduleListObject$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentScheduleListObject$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentScheduleList$inboundSchema: z.ZodType; /** @internal */ export type AgentScheduleList$Outbound = { object: string; data: Array; first_id: string | null; last_id: string | null; has_more: boolean; }; /** @internal */ export declare const AgentScheduleList$outboundSchema: z.ZodType; export declare function agentScheduleListToJSON(agentScheduleList: AgentScheduleList): string; export declare function agentScheduleListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentschedulelist.d.ts.map