import ExtendableError from 'es6-error';
import { ErrorCode } from './ErrorCode';
export default class XDLError extends ExtendableError {
    code: string;
    isXDLError: true;
    constructor(code: ErrorCode, message: string, options?: {
        noTrack: boolean;
    });
}