interface ItemType { stype?: string; reason?: string; uni?: string; uuid?: string; serious?: any; } interface PropsType { visible: boolean; setVisible: (boolean: any) => void; checkItem?: ItemType; pid?: string; onCallBack?: () => void; run?: any; } declare const CloseRuleModal: ({ visible, setVisible, checkItem, run }: PropsType) => JSX.Element; export default CloseRuleModal;