export declare class TextMask { static unmaskStrNumber(val: string): string | null; static unmaskNumber(val: string): number | null; static int(n: number): string; static float(n: number, i: number): string; static phone(): string; }