import { Decimal } from 'decimal.js'; declare class NumberSystem { static dec: NumberSystem; static hex: NumberSystem; static bin: NumberSystem; static oct: NumberSystem; static get(ns: string): NumberSystem | undefined; private static ns; name: string; to: (num: Decimal) => string; constructor(name: string, to: (num: Decimal) => string); } export { NumberSystem };