/** * @fileoverview Language utility functions for checking null, undefined, and empty string values. * Provides type checking predicates for common value validation scenarios. */ /** * Check if a value is null, undefined, or an empty string. */ declare function isNullishOrEmptyString(value: unknown): boolean; export { isNullishOrEmptyString };