/**
 * Check if argument is numeric type, check if is number or a string that can be converted into number
 * @param arg
 * @returns {boolean}
 */
export declare function isNumeric(arg: unknown): arg is number;
