import { Notifications } from './notifications'; declare const SERVICE_NAME = "notifications"; declare module '../core/platform' { interface PlatformServiceNameType { /** * @see {@link Notifications} */ Notification: typeof SERVICE_NAME; } interface LimeWebComponentPlatform { get(name: PlatformServiceNameType['Notification']): Notifications; } } export {};