import { SystemException, BaseError, Type } from "igniteui-react-core";
/**
 * Represents an arithmetic error.
 */
export declare class ArithmeticException extends SystemException {
    static $t: Type;
    constructor(message: string, innerException: BaseError);
}
