import type { spawn as nodeSpawn } from 'node:child_process'; import type { PtyHandle } from './types.js'; /** Launch `cmd args` (the resolved systemd-run scope plan) as a piped child in * print mode and present it as a PtyHandle so the existing tracker/census * plumbing is unchanged. stdout is forwarded to onData and appended to * streamLogPath (the census reads the init frame from it). */ export declare function makePrintChildHandle(spawnImpl: typeof nodeSpawn, cmd: string, args: string[], env: NodeJS.ProcessEnv, cwd: string, streamLogPath: string): PtyHandle; //# sourceMappingURL=print-child-launcher.d.ts.map