export declare class Exception {
    cause: string | null;
    constructor(cause: string | null, column: number | null, line: number | null, message: string, stacktrace: any[], url: string);
}
