export interface ExecFileResult { stdout: string; stderr: string; } export declare const executeFile: (command: string, args: string[], options?: { cwd?: string; timeoutMs?: number; }) => Promise; export declare const commandAvailable: (command: string) => Promise; export declare const processIsAlive: (pid: number) => boolean; export declare const workerCommand: (workerPath: string, workerArguments: string[]) => string; export declare const spawnDetached: (workerPath: string, workerArguments: string[], cwd: string) => { pid: number; stop(): Promise; isAlive(): Promise; }; //# sourceMappingURL=process-utils.d.ts.map