/** * Checks if `value` is an empty object or collection. * * Objects are considered empty if they have no own enumerable string keyed properties. * * Arrays are considered empty if they have a `length` of `0`. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 4,321 bytes * - Micro-dash: 127 bytes */ export declare function isEmpty(value: any): boolean;