/** * @constant APPLICATION_LIFECYCLE_HOOKS Contains the lifecycle hooks triggered by Kapp instances. */ export declare const APPLICATION_LIFECYCLE_HOOKS: { /** * @property Called on load(), after loading all app modules, register their service and loading their configutation. */ afterLoadModules: string; /** * @property Called on init(), after initializing all services. */ afterInitServices: string; /** * @property Called on init(), after calling the initialization scripts of all modules. */ afterInitModules: string; /** * @property Called on init(), after initializing all core systems (services, configuration, ...). */ afterInit: string; /** * @property Called first on start(). */ beforeStart: string; /** * @property Called last on start(). */ afterStart: string; /** * @property Called on stop(). */ stop: string; };