import JSBI from 'jsbi'; import { AbstractInteger } from './AbstractInteger'; import { SPI } from './ops/symbols'; import { IntegerSPI } from './IntegerSPI'; /** * Integer implementation that supports large numbers. */ export declare class BigInteger extends AbstractInteger { static [SPI]: IntegerSPI; static fromNumber(a: number): BigInteger; static parse(input: string): BigInteger; } //# sourceMappingURL=BigInteger.d.ts.map