import { type ChildProcess } from "node:child_process"; export declare function execFileText(command: string, args: string[], timeoutMs: number): Promise; export declare function commandExists(command: string): Promise; export declare function findCommandPath(command: string): Promise; export declare function terminateChild(child: ChildProcess): void;