/** * Checks if a value is nullable (null, undefined, NaN, or empty string). * * @param value - The value to check * @returns True if the value is considered nullable, false otherwise */ export declare function isNullable(value: T): value is T;