import type { CodeGraphSettings, ToolResult } from "./types.js"; export declare function codeGraphDaemonRoot(indexStore: string): string; export declare class CodeGraphWorkerPool { readonly settings: CodeGraphSettings; readonly projects: Set; private entry?; private creating?; private closed; constructor(settings: CodeGraphSettings); activeProjects(): Set; call(projectPath: string, toolName: string, args: Record, signal?: AbortSignal): Promise; closeProject(projectPath: string, _error?: Error): Promise; close(): Promise; private getOrCreateEntry; private createEntry; private closeEntry; private stopEntry; } //# sourceMappingURL=worker-pool.d.ts.map