import { type RagIngestParams } from "../../../../schemas/index"; import type { IngestStage } from "@qvac/rag"; interface IngestHandlerOptions { onProgress?: (stage: IngestStage, current: number, total: number) => void; signal?: AbortSignal; } export declare function ingest(params: RagIngestParams, options?: IngestHandlerOptions): Promise; export {}; //# sourceMappingURL=ingest.d.ts.map