import { groupBy } from 'lodash';
/** 空数组 */
declare const isEmpty: (item?: Array<any>) => boolean;
/** 非空数组 */
declare const isNotEmpty: (item?: Array<any>) => boolean;
export { isEmpty, isNotEmpty, groupBy, };
