botframework-webchat-component
Version:
React component of botframework-webchat
11 lines • 374 B
TypeScript
import React from 'react';
type Props = Readonly<{
identifier?: string;
text: string;
isExternal?: boolean;
badgeName?: string;
badgeTitle?: string;
}>;
declare const ItemBody: React.MemoExoticComponent<({ badgeName, badgeTitle, identifier, isExternal, text }: Props) => React.JSX.Element>;
export default ItemBody;
//# sourceMappingURL=ItemBody.d.ts.map