/** Checks if a value is numeric, ie. possible to coerce to a number, e.g. 123 or '123.0' */ export declare const isNumeric: (numToCheck: any) => boolean;