UNPKG

botframework-webchat-component

Version:
12 lines 435 B
import { type WebChatActivity } from 'botframework-webchat-core'; import { type FC } from 'react'; import { type WebChatAttachment } from '../private/types/WebChatAttachment'; type Props = Readonly<{ activity: WebChatActivity; attachment: WebChatAttachment & { contentType: `text/${string}`; }; }>; declare const TextAttachment: FC<Props>; export default TextAttachment; //# sourceMappingURL=TextAttachment.d.ts.map