import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Connection } from "./connection.js"; import { Links } from "./links.js"; export type Connections = { results?: Array | undefined; /** * Current page number. */ pageNumber: number; /** * Number of items to return in results array. */ pageSize: number; /** * Total number of items. */ totalResults: number; links: Links; }; /** @internal */ export declare const Connections$inboundSchema: z.ZodType; export declare function connectionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connections.d.ts.map