export interface CommandResult { code: number; stdout: string; stderr: string; } export interface CommandRunnerOptions { cwd?: string; input?: string; } export type CommandRunner = (command: string, args: readonly string[], options?: CommandRunnerOptions) => CommandResult; export declare const defaultCommandRunner: CommandRunner;