import { CommandWithOptions, ExecResult, RawExecOptions } from "./types.js"; //#region lib/util/exec/common.d.ts declare function exec(commandArgument: string | CommandWithOptions, opts: RawExecOptions): Promise; declare const rawExec: (cmd: string | CommandWithOptions, opts: RawExecOptions) => Promise; //#endregion export { exec, rawExec }; //# sourceMappingURL=common.d.ts.map