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