import { type FC, type ReactNode } from 'react'; type MaskProps = { visible: boolean; children: ReactNode; onMaskClick?: () => void; onClose?: () => void; }; export declare const Mask: FC; export {};