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