@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
11 lines (10 loc) • 390 B
TypeScript
import MuiModal from '@mui/material/Modal';
import type { ComponentProps } from 'react';
export type MuiModalChildren = ComponentProps<typeof MuiModal>['children'];
interface Props {
open: boolean;
children: MuiModalChildren;
handleClose?: () => void;
}
export declare const Modal: ({ open, children, handleClose }: Props) => import("react/jsx-runtime").JSX.Element;
export {};