import type { BootstrapWriteBoundary } from "../io/bootstrap-write-boundary.js"; import type { CliRunResult } from "./bearshell.js"; type DeveloperMcpBundleResult = { readonly kind: "registered"; } | { readonly kind: "failure"; readonly result: CliRunResult; }; type DeveloperMcpBundleOptions = { readonly bootstrapWriteBoundary?: BootstrapWriteBoundary; readonly codeGraphEnabled?: boolean; readonly packageRoot?: string; }; export declare function enableDeveloperMcpBundle(projectDir: string, options?: DeveloperMcpBundleOptions): DeveloperMcpBundleResult; export {};