/** * 验证数字相关 */ export declare function isNumeric(val: string): boolean; export declare function isNaN(val: number): val is typeof NaN;