import type { ChildProcess, SpawnOptions } from 'node:child_process'; export declare const spawn: (cmd: string, args?: readonly string[], opts?: SpawnOptions) => ChildProcess & { waitAsync: () => Promise; }; export declare const mkfifoSync: (fifoPath: string) => NonSharedBuffer;