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 ScoredChunk = { text: string; score: number; id: string; index: number; metadata?: { [k: string]: any; } | undefined; documentId: string; documentName: string; documentMetadata: { [k: string]: any; }; links: { [k: string]: Link; }; }; /** @internal */ export declare const ScoredChunk$inboundSchema: z.ZodType; /** @internal */ export type ScoredChunk$Outbound = { text: string; score: number; id: string; index: number; metadata?: { [k: string]: any; } | undefined; document_id: string; document_name: string; document_metadata: { [k: string]: any; }; links: { [k: string]: Link$Outbound; }; }; /** @internal */ export declare const ScoredChunk$outboundSchema: z.ZodType; export declare function scoredChunkToJSON(scoredChunk: ScoredChunk): string; export declare function scoredChunkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=scoredchunk.d.ts.map