import type { ParsedCommand } from './shell-parser'; export interface SpawnResult { exitCode: number; signal: NodeJS.Signals | null; } /** * Execute a command with full stdio passthrough. All stdin, stdout, and stderr are * proxied between the parent and child process. * * @param parsed - The parsed command to execute * @param cwd - The working directory * @returns Promise that resolves with exit code and signal */ export declare function executeCommand(parsed: ParsedCommand, cwd: string): Promise;