import { ArgumentOutOfRangeException } from "igniteui-react-core";
import { BaseError, Type } from "igniteui-react-core";
/**
 * Extend the class ArgumentOutOfRangeException to add a constructor
 */
export declare class ArgumentOutOfRangeExceptionExtension extends ArgumentOutOfRangeException {
    static $t: Type;
    constructor(paramName?: string, message?: string);
    constructor(paramName: string, value: any, message: string);
    constructor(message: string, innerException: BaseError);
    constructor(..._rest: any[]);
}
