import { ArithmeticException } from "./ArithmeticException"; import { BaseError, Type } from "igniteui-webcomponents-core"; /** * Represents an error in which a division by zero occurred during calculations. */ export declare class DivideByZeroException extends ArithmeticException { static $t: Type; constructor(message: string, innerException: BaseError); }