import React from 'react'; declare type PropType = { visible: boolean; setVisible: (visible: boolean) => void; onCheckAllChange: (e: any) => void; indeterminate: boolean; checkAll: boolean; allowUserIds: string[]; setAllowUserIds: (allowUserIds: string[]) => void; onOk: (roomName: string) => void; checked: (v: any) => boolean; disabled: (v: any) => boolean; title: string; okText: string; defaultValue: string; members: any[]; }; declare const ChatModal: React.FC; export default ChatModal;