botframework-webchat-component
Version:
React component of botframework-webchat
9 lines • 375 B
TypeScript
import { type WebChatActivity } from 'botframework-webchat-core';
import React from 'react';
type Props = Readonly<{
activity: WebChatActivity;
markdown: string;
}>;
declare const MarkdownTextContent: React.MemoExoticComponent<({ activity, markdown }: Props) => React.JSX.Element>;
export default MarkdownTextContent;
//# sourceMappingURL=MarkdownTextContent.d.ts.map