botframework-webchat-component
Version:
React component of botframework-webchat
11 lines • 453 B
TypeScript
import { type WebChatActivity } from 'botframework-webchat-core';
import React from 'react';
type LiveRegionAttachmentsProps = Readonly<{
activity: Readonly<WebChatActivity & {
type: 'message';
}>;
}>;
declare const LiveRegionAttachments: ({ activity }: LiveRegionAttachmentsProps) => React.JSX.Element;
export default LiveRegionAttachments;
export type { LiveRegionAttachmentsProps };
//# sourceMappingURL=LiveRegionAttachments.d.ts.map