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