import React from 'react'; import '../g.scss'; declare function EventList(props: IEventLists): React.JSX.Element; export default EventList; export interface IEventLists { list: IEventList[]; change?: Function; } export interface IEventList { title: string | number; type: string; key: string; }