UNPKG

react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

18 lines 535 B
import { Flow } from "../../../types/Flow"; import "./BotOptions.css"; /** * Supports showing of options for user to select. * * @param options array representing options to show * @param path path associated with the current block */ declare const BotOptions: ({ options, path, }: { options: { items: Array<string>; sendOutput?: boolean; reusable?: boolean; }; path: keyof Flow; }) => import("react/jsx-runtime").JSX.Element; export default BotOptions; //# sourceMappingURL=BotOptions.d.ts.map