const BreakoutPreviewPanel: React.FC<{
breakoutsAskingForHelp: BreakoutAskingForHelpStatus[];
currentParticipants: BreakoutParticipants;
showCloseRoomsButton: boolean;
closeRoomsText: string;
editRoomsText: string;
breakoutRoomsNames: Map<RoomID, string>;
myIdentity?: string;
amIControlOnlyParticipant: boolean;
headerText?: string;
onJoinRoom: (roomId) => void;
onJoinRoomViaHelp: (roomId) => void;
onCloseRoom: (roomId) => void;
onCloseRooms: () => void;
onClosePanel: () => void;
onEditRooms: () => void;
}>;