import { SpawnOptions } from "node:child_process"; //#region src/utils/runParallel/bin.d.ts type BinCallback = (err: Error | null, stdout?: string, code?: number) => void; /** * Spawn a binary and read its stdout. * @param cmd The name of the binary to spawn. * @param args The arguments for the binary. * @param options Optional option for the spawn function. * @param done Callback function. */ export declare const run: (cmd: string, args: string[], options: SpawnOptions | BinCallback | undefined, done?: BinCallback) => void; //#endregion //# sourceMappingURL=bin.d.ts.map