UNPKG

dumi

Version:

📖 Documentation Generator of React Component

10 lines (9 loc) • 227 B
import { type FC, type ReactNode } from 'react'; type MaskProps = { visible: boolean; children: ReactNode; onMaskClick?: () => void; onClose?: () => void; }; export declare const Mask: FC<MaskProps>; export {};