UNPKG

@enumura/chatbot-flow-editor

Version:

Visual chatbot flow editor - Development tool for creating conversational flows

10 lines 307 B
import { ChatbotFlow } from '../../../types/chatbot'; interface ExportDialogProps { open: boolean; onClose: () => void; flow: ChatbotFlow; onExport: () => void; } declare const ExportDialog: React.FC<ExportDialogProps>; export default ExportDialog; //# sourceMappingURL=ExportDialog.d.ts.map