export declare class NumberHelper {
    static toEnglishDigits(str: string): string;
    static toEnglishNumber(val: string): number;
    static toEnglishInt(val: string): number;
    static toEnglishFloat(val: string, decimal: number): number;
}
