UNPKG

botframework-webchat-component

Version:
10 lines 309 B
import { type FC } from 'react'; import { type WebChatActivity } from 'botframework-webchat-core'; type Props = Readonly<{ activity: WebChatActivity; contentType?: string; text: string; }>; declare const TextContent: FC<Props>; export default TextContent; //# sourceMappingURL=TextContent.d.ts.map