import type { ExtractionTier } from './types/index.js'; export interface CortexConfig { qdrantUrl: string; neo4jUri: string; neo4jUser: string; neo4jPassword: string; sqlitePath: string; embeddingModel: string; transformersCache: string; collectionName: string; vectorDimensions: number; anthropicApiKey: string; llmModel: string; extractionTier: ExtractionTier; autoExtract: boolean; extractBufferSize: number; extractDebounceMs: number; consolidationEnabled: boolean; consolidationIntervalMs: number; consolidationBatchSize: number; stalenessThresholdDays: number; ollamaUrl: string; ollamaModel: string; ollamaEnabled: boolean; } export declare function loadConfig(): CortexConfig; export declare const SCOPE_BOOST: { readonly PROJECT_LOCAL: 1.5; readonly CROSS_PROJECT: 1.2; readonly RELATED_PROJECT: 1.1; readonly GLOBAL: 1; }; //# sourceMappingURL=config.d.ts.map