import { type CodeToolExecutor } from "./dispatch.js"; import type { CodeToolCall, CodeToolResult, DispatchWave } from "./types.js"; export type LocalExecutorOptions = { cwd?: string; timeoutMs?: number; maxOutputBytes?: number; }; export declare class LocalExecutor implements CodeToolExecutor { readonly cwd: string; readonly timeoutMs: number; readonly maxOutputBytes: number; readonly dispatchWave: DispatchWave; private anchors?; constructor(options?: LocalExecutorOptions); execute(call: CodeToolCall): Promise; private bash; private read; private write; private edit; private path; } //# sourceMappingURL=executor.d.ts.map