import EventTypes from './enums/EventTypes'; import { EventConfig } from './types/EventConfig'; export default class EventManager { static listenTo(eventType: EventTypes, callback: EventListener): void; static dispatch(type: EventTypes, eventDetail?: Record): CustomEvent; }