import type { ParticipantsGroup } from '../../Data/ParticipantsGroup.ts';
export interface ModalParticipantsGroupType extends ParticipantsGroup {
    id: number;
    name: string;
    participantsIds: number[];
    type: 'panel' | 'editing';
}
