import type { RunExecutor } from "./executor-types.js"; import type { McpServerConfig, SettingSource } from "./options.js"; export interface LocalExecutorHandle { run: RunExecutor; reload(): Promise; dispose(): Promise; } export interface CreateLocalExecutorOptions { readonly workingDirectory?: string; readonly apiKey?: string; readonly settingSources?: readonly SettingSource[]; readonly mcpServers?: Record; } export declare function createLocalExecutor(optionsOrWorkingDirectory?: CreateLocalExecutorOptions | string, apiKey?: string): Promise; //# sourceMappingURL=local-executor.d.ts.map