export interface IReplaceGroupItemContentCommandArgs<TItem, TGroupItem> {
    newItems: TItem[] | null;
    targetGroupItem: TGroupItem | null;
}
