import { type ExplorerConfig } from "../../toolcraft-design/dist/index.js"; import type { ActionFs, DiscoveryFs, PlanKind } from "./types.js"; type RunExplorerImpl = (config: ExplorerConfig) => Promise; export declare function runPlanBrowser(options: { cwd: string; homeDir: string; configPath: string; projectConfigPath: string; fs: DiscoveryFs & Partial; kind?: PlanKind; archived?: boolean; variables?: Record; runExplorerImpl?: RunExplorerImpl; }): Promise; export {};