import { default as ChatGroup } from './ChatGroup'; import { default as ChatViewport } from './ChatViewport'; type ChatCompound = typeof ChatGroup & { Viewport: typeof ChatViewport; }; declare const Chat: ChatCompound; export default Chat; export type { ChatGroupProps, ChatViewportProps, ChatProps, ChatParticipantProps, ChatCardDirection, ChatParticipantLink, } from './Chat.types';