import type { Subprocess } from "./Subprocess"; export declare class SubprocessResult { exitCode: number | null; stdout?: string[]; stderr?: string[]; subprocess: Subprocess; failed(): boolean; asError(): Error; stdoutAsString(): string; stderrAsString(): string; }