import { ChannelEntity, ChannelPropertyEntity, DeviceEntity } from '../../../modules/devices/entities/devices.entity'; export declare class WledDeviceEntity extends DeviceEntity { get type(): string; hostname: string | null; toString(): string; } export declare class WledChannelEntity extends ChannelEntity { get type(): string; toString(): string; } export declare class WledChannelPropertyEntity extends ChannelPropertyEntity { get type(): string; toString(): string; }