/** * Checks if a value is a valid number. * Handles both numeric and string inputs, including hex strings. * * @param {any} value - The value to check. * @returns {boolean} True if the value is a valid, non-negative, finite number; false otherwise. */ export declare const isValidNumber: (value: any) => boolean;