UNPKG

chatbot-frontend-package

Version:
12 lines (11 loc) 473 B
import * as React from 'react'; type QuickMessagesMenuProps = { questions: string[]; favorites: string[]; context: string; disabled: boolean; handleCreatePrompt: (prompt: string, context: string) => void; handleQuickMessages: (prompt: string) => void; }; export default function QuickMessagesMenu({ questions, favorites, context, disabled, handleCreatePrompt, handleQuickMessages }: QuickMessagesMenuProps): React.JSX.Element; export {};