mui-toolpad-extended-tuni
Version:
10 lines (9 loc) • 311 B
TypeScript
/** @format */
import { ReactNode } from 'react';
type EduMLDialogProps = {
children: ReactNode;
open: boolean;
onClose: () => void;
};
declare const EduMLDialog: ({ children, open, onClose, ...dialogProps }: EduMLDialogProps) => import("react/jsx-runtime").JSX.Element;
export default EduMLDialog;