/**
 * Thrown when an arithmetic operation fails due to NaN, Infinity, Division by Zero, or other arithmetic errors.
 */
export declare class ArithmeticError extends Error {
    /**
     * Constructs a new `ArithmeticError` instance.
     *
     * @param message - The error message.
     * @param cause - The nest error (if any).
     */
    constructor(message: string, cause?: Error | any);
}
