import React from 'react'; declare type PropType = { username: string; room_id: string; chat?: any; onChatSet?: (chat: any) => void; to: (room_id?: string) => void; user_id: string; members: any[]; }; declare const RoomList: React.FC; export default RoomList;