botframework-webchat-component
Version:
React component of botframework-webchat
10 lines • 384 B
TypeScript
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