UNPKG

botframework-webchat-component

Version:
10 lines 384 B
import { FC } from 'react'; import type { WebChatActivity } from 'botframework-webchat-core'; import type { SendStatus as SendStatusType } from '../../types/internal/SendStatus'; type SendStatusProps = { activity: WebChatActivity; sendStatus: SendStatusType; }; declare const SendStatus: FC<SendStatusProps>; export default SendStatus; //# sourceMappingURL=SendStatus.d.ts.map