import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Company } from "./company.js"; import { Links } from "./links.js"; export type Companies = { 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 Companies$inboundSchema: z.ZodType; export declare function companiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=companies.d.ts.map