import React from 'react'; import type { openEventPanelType } from '../../hooks/useEvent'; import './index.less'; export interface CustomEventProps { openEventPanel: openEventPanelType; openCustomPanel?: any; type?: 'sampile'; } /** * 自定义事件的按钮 * @param props * @returns */ declare const CustomEvent: React.ForwardRefExoticComponent>; export default CustomEvent;