import type { CompletionSources } from "./completions.ts"; /** Completion sources bound to a location the extension re-points on every session start. */ export interface ProjectCompletionSources extends CompletionSources { /** Point the sources at the project and session directory of the session that just started (spec ยง14.7). */ setProject(cwd: string, sessionDir: string): void; } export declare function createCompletionSources(): ProjectCompletionSources; //# sourceMappingURL=completion-sources.d.ts.map