import { type RuntimeExecutableResolver } from "./runtime-executable"; type LspMcpConfigOptions = { readonly cwd?: string; readonly moduleUrl?: string; readonly exists?: (path: string) => boolean; readonly resolveExecutable?: RuntimeExecutableResolver; }; export type LocalMcpConfig = { type: "local"; command: string[]; enabled: boolean; environment?: Record; }; export declare function createLspMcpConfig(options?: LspMcpConfigOptions): LocalMcpConfig; export {};