import type { McodaRuntimeAdapter } from "../types.js"; export interface CliMcodaRuntimeAdapterInput { command?: string; cwd?: string; timeoutMs?: number; runCommand?: (command: string, args: string[], options: { cwd?: string; timeoutMs?: number; }) => Promise; } export declare function createCliMcodaRuntimeAdapter(input?: CliMcodaRuntimeAdapterInput): McodaRuntimeAdapter; //# sourceMappingURL=cliRuntime.d.ts.map