import { createDirectMcpClient } from "./direct-client.js"; export interface McpPoolDaemon { socketPath: string; close(): Promise; } export interface StartMcpPoolOptions { socketPath: string; catalogPath?: string; createClient?: typeof createDirectMcpClient; } export declare function startMcpPool(options: StartMcpPoolOptions): Promise;