botframework-webchat-component
Version:
React component of botframework-webchat
10 lines • 309 B
TypeScript
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