import { ChannelEntity, ChannelPropertyEntity, DeviceEntity } from '../../../modules/devices/entities/devices.entity'; export declare class SimulatorDeviceEntity extends DeviceEntity { autoSimulate: boolean; simulateInterval: number; behaviorMode: string; get type(): string; } export declare class SimulatorChannelEntity extends ChannelEntity { get type(): string; } export declare class SimulatorChannelPropertyEntity extends ChannelPropertyEntity { get type(): string; }