export interface IGroupingStore<T = unknown> {
readonly type: string;
getByIds(ids: string[]): T[];
}