import { AError } from "./AError";
export declare class ExceptionalError extends AError {
    private _exception;
    /**
     *
     */
    constructor(exception: any);
    get exception(): any;
}
