/** * Determines whether a value is NaN (Not-A-Number). * * @since 1.0.0 * * @param {*} value - The value to check. * @returns {boolean} - Returns `true` if the value is NaN, else `false`. * * @example * * isNaN(NaN); // true * isNaN('string'); // true * isNaN(1); // false */ declare const isNaN: (value: any) => boolean; export default isNaN;