import React from 'react'; import './index.less'; interface ActionItemPros { data: any; onDelete?: (e: Record) => void; changeEventData?: (e: Record) => void; onShielding?: (data: any) => void; } declare const ActionItem: React.FC; export default ActionItem;