botframework-webchat-component
Version:
React component of botframework-webchat
8 lines • 368 B
TypeScript
import { type OrgSchemaAction } from 'botframework-webchat-core';
import React, { type PropsWithChildren } from 'react';
type Props = Readonly<PropsWithChildren<{
actions: ReadonlySet<OrgSchemaAction>;
}>>;
declare const Feedback: React.MemoExoticComponent<({ actions }: Props) => React.JSX.Element>;
export default Feedback;
//# sourceMappingURL=Feedback.d.ts.map