import ReactWebChat, { type ReactWebChatProps } from 'botframework-webchat-component'; import React from 'react'; import AddFullBundle, { type AddFullBundleProps } from './AddFullBundle'; type FullReactWebChatProps = Readonly>; // Add additional props to , so it support additional features const FullReactWebChat = (props: FullReactWebChatProps) => ( {extraProps => } ); export default FullReactWebChat; export type { FullReactWebChatProps };