/**
 * Common module.
 * @module Common
 */
/**
 * Extension for BigInt
 * @interface BigInt
 */
interface BigInt {
    toJSON(): string;
}
