import React from 'react'; import './styles/eventConfig.less'; export interface EventConfigProps { value?: any; onChange?: (val: any) => void; } declare const EventConfig: React.FC; export default EventConfig;