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 { Agent, Agent$Outbound } from "./agent.js"; export declare const AgentListObject: { readonly List: "list"; }; export type AgentListObject = ClosedEnum; export type AgentList = { object: AgentListObject; data: Array; firstId: string | null; lastId: string | null; hasMore: boolean; }; /** @internal */ export declare const AgentListObject$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentListObject$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentList$inboundSchema: z.ZodType; /** @internal */ export type AgentList$Outbound = { object: string; data: Array; first_id: string | null; last_id: string | null; has_more: boolean; }; /** @internal */ export declare const AgentList$outboundSchema: z.ZodType; export declare function agentListToJSON(agentList: AgentList): string; export declare function agentListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentlist.d.ts.map