import { eventMap } from './event-map.js'; import { TestInstance } from './types.js'; type EventMap = typeof eventMap; export type EventType = keyof EventMap; export type FireFunction = (instance: TestInstance, event: TEventType, options?: Parameters[1]) => boolean | Promise; export type FireObject = { [K in EventType]: (instance: TestInstance, options?: Parameters[1]) => boolean | Promise; }; declare const fireEvent: FireFunction & FireObject; export { fireEvent };