///
import { ExecException } from "child_process";
export declare type Output = {
code?: number;
error: ExecException | null;
files: string[];
stderr?: string;
stdout?: string;
};
export declare type ExecCLI = (args?: string, destination?: string) => Promise