import type { Message, Result } from '@mcp-abap-adt/llm-agent'; import { OrchestratorError } from '@mcp-abap-adt/llm-agent'; import type { IRagOrchestrator, OrchestratedContext, OrchestrateOptions, RagOrchestratorDeps } from './rag-orchestrator-types.js'; export { summarizeHistory, toEnglishForRag } from './rag-helpers.js'; export type { IRagOrchestrator, OrchestratedContext, OrchestrateOptions, RagOrchestratorDeps, } from './rag-orchestrator-types.js'; export declare class RagOrchestrator implements IRagOrchestrator { private readonly deps; private readonly toEnglish; private readonly summarize; constructor(deps: RagOrchestratorDeps); orchestrate(input: string | Message[], options: OrchestrateOptions): Promise>; private _preparePipeline; } //# sourceMappingURL=rag-orchestrator.d.ts.map