BreakoutSetupPanel
const BreakoutSetupPanel: React.FC<React.PropsWithChildren<{
currentParticipants: BreakoutParticipants;
myIdentity?: string;
openRoomsText: string;
isOpeningRooms?: boolean;
numberOfRooms: number;
assignmentMode: BreakoutRoomAssignmentMode;
headerText?: string;
onOpenRooms: (participants) => void;
onClosePanel: () => void;
onBack: () => void;
onSettingsButtonClick: () => void;
shuffle?: ShuffleBreakoutParticipants;
}>>;