interface IUnit<T = number> {
    [key: string]: T;
}
export declare const UNITS: IUnit;
export declare const TEN: IUnit;
export declare const MAGNITUDE: IUnit;
export declare const TYPO_LIST: IUnit<string>;
export declare const UNIT_KEYS: string[];
export declare const TEN_KEYS: string[];
export declare const MAGNITUDE_KEYS: string[];
export declare const NUMBER_WORDS: string[];
export declare const JOINERS: string[];
export declare const PREFIXES: string[];
export declare const TOKEN_TYPE: {
    UNIT: number;
    TEN: number;
    MAGNITUDE: number;
    DECIMAL: number;
    HUNDRED: number;
};
export declare const ALL_WORDS: string[];
export {};
