import type { ContextImpactSummary, ContextSelection } from "./Types.js"; import type { IntentSignals } from "./IntentSignals.js"; type Hit = { path?: string; score?: number; }; export interface ContextSelectorOptions { maxFiles: number; focusCount?: number; minHitCount?: number; } export interface ContextSelectorInput { hits: Hit[]; impact: ContextImpactSummary[]; intent?: IntentSignals; docTask?: boolean; recentFiles?: string[]; preferredFiles?: string[]; } export declare const selectContextFiles: (input: ContextSelectorInput, options: ContextSelectorOptions) => ContextSelection; export {}; //# sourceMappingURL=ContextSelector.d.ts.map