import { FC } from 'react'; import './modal.less'; type ActionType = 'click' | 'hover' | 'focus'; type ShowActionType = 'click' | 'mouseEnter' | 'focus'; type HideActionType = 'click' | 'mouseLeave' | 'blur'; interface ComponentProps { value?: any; id?: string; getPopupContainer?: any; getDocument?: (element?: any) => any; mouseEnterDelay?: number; mouseLeaveDelay?: number; focusDelay?: number; blurDelay?: number; percentSize?: number; action?: ActionType | ActionType[]; showAction?: ShowActionType[]; hideAction?: HideActionType[]; } declare const Modal: FC; export default Modal;