/** * Checks if `value` is empty. * * @example * * isEmpty(null) * // => true * * isEmpty(true) * // => true * * isEmpty(1) * // => true * * isEmpty('abc') * // => false * * isEmpty({ a: 1 }) * // => false * * isEmpty([1, 2, 3]) * // => false * * isEmpty({}) * // => true * */ export declare function isEmpty(value: unknown): boolean; //# sourceMappingURL=metal.d.ts.map