import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Link, Link$Outbound } from "./link.js"; export type DocumentChunk = { id: string; index?: number | undefined; text: string; metadata?: { [k: string]: any; } | undefined; links: { [k: string]: Link; }; }; /** @internal */ export declare const DocumentChunk$inboundSchema: z.ZodType; /** @internal */ export type DocumentChunk$Outbound = { id: string; index: number; text: string; metadata?: { [k: string]: any; } | undefined; links: { [k: string]: Link$Outbound; }; }; /** @internal */ export declare const DocumentChunk$outboundSchema: z.ZodType; export declare function documentChunkToJSON(documentChunk: DocumentChunk): string; export declare function documentChunkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=documentchunk.d.ts.map