export declare class CommandError extends Error { readonly exitCode?: number | undefined; readonly stderr: string; readonly name = "CommandError"; constructor(message: string, exitCode?: number | undefined, stderr?: string); } export interface CommandOptions { cwd: string; timeoutMs?: number; maxOutputBytes?: number; env?: Record; } export interface CommandResult { stdout: string; stderr: string; } export declare function runCommand(command: string, args: string[], options: CommandOptions): Promise; //# sourceMappingURL=command.d.ts.map