import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EntityType } from "./entitytype.js"; /** * A disambiguation between multiple entities with the same name */ export type Disambiguation = { /** * Name of the ambiguous entity */ name?: string | undefined; /** * The unique id of the entity in the knowledge graph */ id?: string | undefined; /** * The type of entity. */ type?: EntityType | undefined; }; /** @internal */ export declare const Disambiguation$inboundSchema: z.ZodType; /** @internal */ export type Disambiguation$Outbound = { name?: string | undefined; id?: string | undefined; type?: string | undefined; }; /** @internal */ export declare const Disambiguation$outboundSchema: z.ZodType; export declare function disambiguationToJSON(disambiguation: Disambiguation): string; export declare function disambiguationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=disambiguation.d.ts.map