/**
 * 判断是否是数字或数字字符串
 * @param val 需要判断的值
 */
declare function isNumeric(val: unknown): val is string | number;

export { isNumeric };
