/*!
 * @author electricessence / https://github.com/electricessence/
 * Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
 */
/**
 * An error in the eval() function has occurred.
 */
export declare const Error = "Error";
/**
 * An error in the eval() function has occurred.
 */
export declare const EvalError = "EvalError";
/**
 * Out of range number value has occurred.
 */
export declare const RangeError = "RangeError";
/**
 * An illegal reference has occurred.
 */
export declare const ReferenceError = "ReferenceError";
/**
 * A syntax error within code inside the eval() function has occurred. All other syntax errors are not caught by try/catch/finally, and will trigger the default browser error message associated with the error. To catch actual syntax errors, you may use the onerror event.
 */
export declare const SyntaxError = "SyntaxError";
/**
 * An error in the expected variable type has occurred.
 */
export declare const TypeError = "TypeError";
/**
 * An error when encoding or decoding the URI has occurred (ie: when calling encodeURI()).
 */
export declare const URIError = "URIError";
