import { RouteRegistry as Service } from './registry'; declare const SERVICE_NAME = "routeRegistry"; declare module '../core/platform' { interface PlatformServiceNameType { /** * @see {@link Service RouteRegistry} * * @note Work in progress, do not use! * @private */ RouteRegistry: typeof SERVICE_NAME; } interface LimeWebComponentPlatform { get(name: PlatformServiceNameType['RouteRegistry']): Service; } } export {};