@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
11 lines (10 loc) • 340 B
TypeScript
import type { DialogProps } from '@mui/material';
interface Props extends DialogProps {
header?: React.ReactNode;
onCancel: () => void;
onSubmit: () => void;
cancelText?: string;
submitText?: string;
}
declare const ConfirmDialog: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default ConfirmDialog;