import { UintX } from '../internals/UintX'; import { ExternalUintish } from '../interfaces'; export declare function add(UintClass: T, a: T, b: UintX): T; export declare function sub(UintClass: T, a: T, b: UintX): T; export declare function mul(UintClass: T, a: T, b: UintX): T; export declare function divRd(UintClass: T, a: T, b: UintX): T; export declare function divDn(UintClass: T, a: T, b: UintX): T; export declare function divUp(UintClass: T, a: T, b: UintX): T; export declare function mod(UintClass: T, a: T, b: UintX): T;