declare const isNumeric: <T extends number>(value: any) => value is T;
export default isNumeric;
