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