import { ServiceOptions } from "../Service"; import { ApplicationLifecycleListener } from "../api"; interface References { listeners: ApplicationLifecycleListener[]; } export declare class ApplicationLifecycleEventService { #private; constructor(options: ServiceOptions); /** @internal */ emitLifecycleEvent(event: "after-start" | "before-stop"): void; } export {};