@enumura/chatbot-flow-editor
Version:
Visual chatbot flow editor - Development tool for creating conversational flows
10 lines • 352 B
TypeScript
interface SimpleDialogProps {
open: boolean;
onClose: () => void;
title: string;
children: React.ReactNode;
footer?: React.ReactNode;
}
export default function SimpleDialog({ open, onClose, title, children, footer }: SimpleDialogProps): import("react/jsx-runtime").JSX.Element | null;
export {};
//# sourceMappingURL=Dialog.d.ts.map