import { EmptyObjectOf } from '../_internal/EmptyObjectOf.js'; declare function isEmpty(value?: T): boolean; declare function isEmpty(value: string): value is ''; declare function isEmpty(value: Map | Set | ArrayLike | null | undefined): boolean; declare function isEmpty(value: object): boolean; declare function isEmpty(value: T | null | undefined): value is EmptyObjectOf | null | undefined; declare function isEmpty(value?: any): boolean; export { isEmpty };