import { ValidNumber } from "./types/advancedTypes"; /** * A type guard that can be used to remove the NaN and Infinity from a number */ export declare function isValidNumber(value: unknown): value is ValidNumber;