import { ILexoNumeralSystem } from './lexoNumeralSystem'; export declare class LexoNumeralSystem10 implements ILexoNumeralSystem { getBase(): number; getPositiveChar(): string; getNegativeChar(): string; getRadixPointChar(): string; toDigit(ch: string): number; toChar(digit: number): string; }