import './styles/CometChatApp.css'; import '@cometchat/chat-uikit-react/css-variables.css'; interface CometChatAppProps { /** Default user for the chat application (optional). */ user?: CometChat.User; /** Default group for the chat application (optional). */ group?: CometChat.Group; /** Show or hide group action messages (optional). */ showGroupActionMessages?: boolean; autoOpenFirstItem?: boolean; defaultActiveTab?: 'chats' | 'calls' | 'users' | 'groups'; } /** * Main application component for the CometChat Builder. * * @param {CometChatAppProps} props - The component props. * @returns {JSX.Element} The rendered CometChatApp component. */ declare function CometChatApp({ user, group, showGroupActionMessages, autoOpenFirstItem, defaultActiveTab, }: CometChatAppProps): import("react/jsx-runtime").JSX.Element; export default CometChatApp;