export declare const isNullish: (value: unknown) => boolean; export declare const isEmptyArrayLike: (value: unknown) => boolean; export declare const isEmptyObjectLike: (value: any) => boolean; /** * A value is considered empty if it's an empty object (`{}`), empty array * (`[]`), or nullish. */ export declare const isEmptyLike: (value: any) => boolean;