export declare type EventListenerDecoratorOptions = boolean | EventListenerOptions | (AddEventListenerOptions & { target?: EventTarget; }); /** * @param type - The name of the event to listen to. * @param options - Configures the event listener. */ export declare function eventListener(type: EventType, options?: EventListenerDecoratorOptions): MethodDecorator;