import { type RunnableWatchProcess } from "./RunnableWatchProcess.js"; import { type ForkOptions } from "child_process"; export declare class RunnableWatchProcesses { runnableBuildProcesses: RunnableWatchProcess[]; constructor(runnableBuildProcesses: RunnableWatchProcess[]); run(): Promise[]; get length(): number; setForkOptions(options: ForkOptions): this; pipeStdout(callback: (stdout: NodeJS.ReadableStream) => void): this; pipeStderr(callback: (stderr: NodeJS.ReadableStream) => void): this; getProcesses(): RunnableWatchProcess[]; forEach(callback: (process: RunnableWatchProcess) => void): void; }