/** * @author 田尘殇Sean(sean.snow@live.com) create at 2017/12/21 */ export declare class BigInteger extends Number { static ZERO: BigInteger; static ONE: BigInteger; static TEN: BigInteger; static MAX_CONSTANT: number; private static posConst; private static negConst; constructor(magnitude?: any, signum?: any); static valueOf(val: any): BigInteger; }