import { CustomException } from '@nu-art/ts-common';
import { ExecException } from 'child_process';
export declare class CliError extends CustomException {
    stdout: string;
    stderr: string;
    cause: ExecException;
    constructor(message: string, stdout: string, stderr: string, cause: ExecException);
}
export declare class CommandoException extends CustomException {
    stdout: string;
    stderr: string;
    exitCode: number;
    constructor(message: string, stdout: string, stderr: string, exitCode: number);
}
