import { Debugger } from "debug";
import { SpawnOptions } from "node:child_process";
interface Options extends SpawnOptions {
    encoding?: "ascii" | "utf8" | "utf-8";
}
export default function (command: string, args: string[], logger?: Debugger, options?: Options): Promise<{
    stdout: string;
    stderr: string;
}>;
export {};
