import type { McpServerConfig } from "../../agent-mcp-config/dist/index.js"; import { McpClient } from "../../tiny-mcp-client/dist/index.js"; import type { Group } from "./index.js"; export { findProjectRoot } from "./project-root.js"; export interface ResolveMcpProxyOptions { projectRoot?: string; } export declare function hasMcpProxyGroups(root: Group): boolean; export declare function resolveCachePath(name: string, projectRoot?: string): string; export declare function parseRefreshEnv(value: string | undefined): "all" | Set | undefined; export declare function dialUpstream(name: string, config: McpServerConfig): Promise; export declare function resolveMcpProxies(root: Group, options?: ResolveMcpProxyOptions): Promise;