export type WordMappins = {
    word: string;
    values?: number[];
};
export type NumberParts = {
    integer: WordMappins[];
    fraction: WordMappins[];
};
export type CurrencyOptions = {
    parts: NumberParts;
    useExacts?: boolean;
    point?: string;
    only?: string;
};
export type DigitalWordsConfig = {
    groups: {
        [n: number]: WordMappins[];
    };
    ones: string[];
    tens: string[];
    teens: string[];
    hundreds: string[];
    exactWordsMapping?: {
        [n: number]: string;
    };
    currency: {
        [code: string]: CurrencyOptions;
    };
    texts: {
        minus?: string;
        tenSplitter?: string;
        delim1000?: string;
    };
};
/** Dictionary of localized digital words for `NumberSpeller` class */
export declare const NumberSpellerDictionary: Map<string, Readonly<DigitalWordsConfig>>;
