import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AnthropicCitationCharLocation = { citedText: string; documentIndex: number; documentTitle: string | null; endCharIndex: number; fileId: string | null; startCharIndex: number; type: "char_location"; }; /** @internal */ export declare const AnthropicCitationCharLocation$inboundSchema: z.ZodType; export declare function anthropicCitationCharLocationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropiccitationcharlocation.d.ts.map