import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PersonDistance = { /** * The display name. */ name: string; /** * An opaque identifier that can be used to request metadata for a Person. */ obfuscatedId: string; /** * Distance to person, refer to PeopleDistance pipeline on interpretation of the value. */ distance: number; }; /** @internal */ export declare const PersonDistance$inboundSchema: z.ZodType; /** @internal */ export type PersonDistance$Outbound = { name: string; obfuscatedId: string; distance: number; }; /** @internal */ export declare const PersonDistance$outboundSchema: z.ZodType; export declare function personDistanceToJSON(personDistance: PersonDistance): string; export declare function personDistanceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=persondistance.d.ts.map