import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type URLCitation = { endIndex: number; startIndex: number; title: string; type: "url_citation"; url: string; }; /** @internal */ export declare const URLCitation$inboundSchema: z.ZodType; /** @internal */ export type URLCitation$Outbound = { end_index: number; start_index: number; title: string; type: "url_citation"; url: string; }; /** @internal */ export declare const URLCitation$outboundSchema: z.ZodType; export declare function urlCitationToJSON(urlCitation: URLCitation): string; export declare function urlCitationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=urlcitation.d.ts.map