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