botframework-webchat-component
Version:
React component of botframework-webchat
9 lines • 312 B
TypeScript
import { FC } from 'react';
type BasicWebChatProps = {
className?: string;
role?: 'complementary' | 'contentinfo' | 'form' | 'main' | 'region';
};
declare const BasicWebChat: FC<BasicWebChatProps>;
export default BasicWebChat;
export type { BasicWebChatProps };
//# sourceMappingURL=BasicWebChat.d.ts.map