export declare class ErrorBase extends Error {
    private innerError?;
    constructor(message: string, innerError?: Error);
    get Message(): string;
    get Stack(): string;
    get InnerError(): Error;
    toJSON(): string;
    toString(): string;
}
