/** * A constant object that defines event names used throughout the {@link EventService}. * * This object acts as a central repository for all predefined event names, ensuring consistency * when emitting and subscribing to events in the {@link EventService}. * */ export declare const EventName: { NAVIGATION_END: string; NAVIGATION_START: string; LOGIN: string; LOGOUT: string; APP_DATA_LOADED: string; APPLICATION_MOUNTED: string; APPLICATION_UNMOUNTED: string; APPLICATION_CHANGED: string; APPLICATION_BEFORE_CHANGE: string; };