import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DocumentURLChunk = { type?: "document_url" | undefined; documentUrl: string; /** * The filename of the document */ documentName?: string | null | undefined; }; /** @internal */ export declare const DocumentURLChunk$inboundSchema: z.ZodType; /** @internal */ export type DocumentURLChunk$Outbound = { type: "document_url"; document_url: string; document_name?: string | null | undefined; }; /** @internal */ export declare const DocumentURLChunk$outboundSchema: z.ZodType; export declare function documentURLChunkToJSON(documentURLChunk: DocumentURLChunk): string; export declare function documentURLChunkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=documenturlchunk.d.ts.map