import { type ExecFileOptionsWithStringEncoding } from "node:child_process"; type ExecResult = { stdout: string; stderr: string; code: number; }; export declare function execFileUtf8(command: string, args: string[], options?: Omit): Promise; export {};