import { DeviceEntity } from '../entities/devices.entity'; import { IDevicePlatform } from '../platforms/device.platform'; export declare class PlatformRegistryService { private readonly logger; private readonly platforms; register(platform: IDevicePlatform): boolean; get(device: DeviceEntity): IDevicePlatform | null; list(): string[]; }