import React from 'react'; import './index.less'; export interface SelectEventProps { children: React.ReactElement; todoEvents: any[]; eventNameMap: any; disbaledItems: any; comps: any; onVisibleChange: (visible: boolean) => void; visible: boolean; onClick: (e: any) => void; } declare const SelectEventPopover: React.FC; export default SelectEventPopover;