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