import * as React from 'react'; import { ThemeProps } from '../core/ChatTheme'; import { Thread, Message } from '../../models'; import { HistoryProps } from '../core/history/HistoryType'; import { ChatUsersProps } from '../core/useChatProps'; type ChatPageProps> = ChatUsersProps & { historyProps?: HistoryProps; className?: string; themeProps?: Omit; }; declare const ChatPage: >(usersProps: ChatPageProps) => React.JSX.Element; export default ChatPage;