/**
 * Exception thrown when the execution of the Kind executable fails.
 */
export declare class KindExecutionException extends Error {
    /**
     * The default message to use when no message is provided
     */
    private static readonly DEFAULT_MESSAGE;
    /**
     * The non-zero system exit code returned by the Kind executable or the operating system
     */
    private readonly exitCode;
    /**
     * The standard output of the Kind executable
     */
    private readonly stdOut;
    /**
     * The standard error of the Kind executable
     */
    private readonly stdErr;
    constructor(exitCode: number, messageOrStdOutOrCause?: string | Error, stdErrorOrCause?: string | Error, stdErrorParameter?: string);
    /**
     * Returns a string representation of the exception.
     * @returns A string representation of the exception
     */
    toString(): string;
}
