type Any = any; /** Hand-typed re-exports. See ADR-002 ยง4.2 (Path A). */ export declare const importModel: (model: Any, opts?: Any) => Any; export declare const hybridRetrieve: (opts: Any) => Any; export declare const rerankAndFilter: (query: string, chunks: Any[], opts?: Any) => Any[]; export declare const omegaComposeAnswer: (query: string, items: Any[], opts?: Any) => Promise; /** * Kept for type-import compatibility with the previous * `import type { RerankedChunk } from '@astermind/astermind-community'` * usage in OmegaOfflineRAG.ts. Mirrors the community ScoredChunk shape. */ export interface RerankedChunk { heading: string; content: string; rich?: string; score_base?: number; score_rr?: number; p_relevant?: number; } export {}; //# sourceMappingURL=index.d.ts.map