import { Lexeme } from "../lexeme.js";
export declare class NumeralLexeme {
    static cardinal(value: string): Lexeme;
    static ordinal(value: string): Lexeme;
    static ordinal_compound(cardinals_: Array<string>, ordinal_: string): Lexeme;
    static misc(value: string): Lexeme;
}
