import * as React from 'react'; type Props = { title: string; content: string; type: 'delete' | 'info' | 'error'; cancelText: string; onCancel: () => void; submitText: string; onSubmit: () => void; }; declare const Dialog: React.FC; export default Dialog;