import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Entity, Entity$Outbound } from "./entity.js"; import { Pagination, Pagination$Outbound } from "./pagination.js"; export type EntityList = { pagination: Pagination; entities: Array; }; /** @internal */ export declare const EntityList$inboundSchema: z.ZodType; /** @internal */ export type EntityList$Outbound = { pagination: Pagination$Outbound; entities: Array; }; /** @internal */ export declare const EntityList$outboundSchema: z.ZodType; export declare function entityListToJSON(entityList: EntityList): string; export declare function entityListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=entitylist.d.ts.map