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 { AgentConnector, AgentConnector$Outbound } from "./agentconnector.js"; export declare const AgentConnectorListObject: { readonly List: "list"; }; export type AgentConnectorListObject = ClosedEnum; export type AgentConnectorList = { object: AgentConnectorListObject; data: Array; firstId: string | null; lastId: string | null; hasMore: boolean; }; /** @internal */ export declare const AgentConnectorListObject$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentConnectorListObject$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AgentConnectorList$inboundSchema: z.ZodType; /** @internal */ export type AgentConnectorList$Outbound = { object: string; data: Array; first_id: string | null; last_id: string | null; has_more: boolean; }; /** @internal */ export declare const AgentConnectorList$outboundSchema: z.ZodType; export declare function agentConnectorListToJSON(agentConnectorList: AgentConnectorList): string; export declare function agentConnectorListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentconnectorlist.d.ts.map