import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person } from "./person.js"; import { RelatedDocuments } from "./relateddocuments.js"; export type PeopleResponse = { /** * A Person for each ID in the request, each with PersonMetadata populated. */ results?: Array | undefined; /** * A list of documents related to this people response. This is only included if DOCUMENT_ACTIVITY is requested and only 1 person is included in the request. */ relatedDocuments?: Array | undefined; /** * A list of IDs that could not be found. */ errors?: Array | undefined; }; /** @internal */ export declare const PeopleResponse$inboundSchema: z.ZodType; export declare function peopleResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=peopleresponse.d.ts.map