import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ScoredChunk, ScoredChunk$Outbound } from "./scoredchunk.js"; export type Retrieval = { scoredChunks: Array; }; /** @internal */ export declare const Retrieval$inboundSchema: z.ZodType; /** @internal */ export type Retrieval$Outbound = { scored_chunks: Array; }; /** @internal */ export declare const Retrieval$outboundSchema: z.ZodType; export declare function retrievalToJSON(retrieval: Retrieval): string; export declare function retrievalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrieval.d.ts.map