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