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