import { AgBeanStub } from '../core/agBeanStub'; import type { AgCoreBeanCollection } from '../interfaces/agCoreBeanCollection'; import type { BaseEvents } from '../interfaces/baseEvents'; import type { BaseProperties } from '../interfaces/baseProperties'; import type { AgEventService, AgEventServiceGlobalListener, AgEventServiceListener, AgRawEvents } from '../interfaces/iEvent'; import type { IPropertiesService } from '../interfaces/iProperties'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare class BaseEventService, TProperties extends BaseProperties, TGlobalEvents extends BaseEvents, TCommon, TPropertiesService extends IPropertiesService> extends AgBeanStub implements AgEventService { beanName: "eventSvc"; eventServiceType: "global"; private readonly globalSvc; addListener(eventType: TEventType, listener: AgEventServiceListener, async?: boolean): void; removeListener(eventType: TEventType, listener: AgEventServiceListener, async?: boolean): void; addGlobalListener(listener: AgEventServiceGlobalListener, async?: boolean): void; removeGlobalListener(listener: AgEventServiceGlobalListener, async?: boolean): void; dispatchEvent(event: AgRawEvents | BaseEvents[keyof BaseEvents]): void; dispatchEventOnce(event: AgRawEvents | BaseEvents[keyof BaseEvents]): void; }