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 { AgentVersion, AgentVersion$Outbound } from "./agentversion.js"; export declare const AgentVersionListObject: { readonly List: "list"; }; export type AgentVersionListObject = ClosedEnum; export type AgentVersionList = { object: AgentVersionListObject; data: Array; firstId: string | null; lastId: string | null; hasMore: boolean; }; /** @internal */ export declare const AgentVersionListObject$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentVersionListObject$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentVersionList$inboundSchema: z.ZodType; /** @internal */ export type AgentVersionList$Outbound = { object: string; data: Array; first_id: string | null; last_id: string | null; has_more: boolean; }; /** @internal */ export declare const AgentVersionList$outboundSchema: z.ZodType; export declare function agentVersionListToJSON(agentVersionList: AgentVersionList): string; export declare function agentVersionListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentversionlist.d.ts.map