import React from 'react'; import { IOnClose } from '../types'; export interface IMaskProps { /** whether to show mask*/ isMaskShow?: boolean; /** whether to probihit mask click event*/ suppressMaskClose?: boolean; /** set mask style */ maskStyle?: object; /** close event, trigger when closing the modal */ onClose: IOnClose; /** zIndex of the modal*/ zIndex?: number; /** whether to show the modal */ visible: boolean; } declare const MaskComponent: React.FC; export default MaskComponent;