/** * * @param value - The value to check against * @param strict - Pass true if you want to make sure the number is fully and only composed of digits, false to just check if we can extract a number via parseInt(). Default to true. * @returns boolean */ export declare function isNumber(value: any, strict?: boolean): boolean;