export declare namespace NEntity {
  interface IEntityGroup<EntityType> {
    count: number
    items: EntityType[]
    name?: string
    summary?: string
    type?: string
  }
}
