export declare abstract class BaseError extends Error {
    stack: string;
    message: string;
    abstract name: string;
    origin: Error;
    __proto__: any;
    protected constructor(msg: string, throwable?: Error);
}
