export declare function getCmdOutput(cmd: any): Promise<{
    code: number | null;
    err: string;
    stdout: string;
    stderr: string;
}>;
