import React from 'react'; import './index.less'; export interface EventItemrops { data: any; eventNameMap: any; onClick: (data: any) => void; onEdit: (data: any) => void; type?: string; classNames?: any; hidePoint?: boolean; index?: number; style?: React.CSSProperties; isEditCustomEvent?: boolean; eventConfig?: any; showPopover?: boolean; setShowPopover?: (e: boolean) => void; } declare const EventItem: React.FC; export default EventItem;