import { DeviceCategory } from '../../../modules/devices/devices.constants'; import { SimulatorDeviceEntity } from '../entities/simulator.entity'; import { BaseDeviceBehavior, DeviceBehaviorState, PropertyChangeEvent, ScheduledPropertyUpdate } from './device-behavior.interface'; export declare class ThermostatRealisticBehavior extends BaseDeviceBehavior { private static readonly HEAT_RATE_PER_MINUTE; private static readonly COOL_RATE_PER_MINUTE; private static readonly SETTLING_THRESHOLD; getType(): string; getSupportedCategory(): DeviceCategory; onPropertyChanged(device: SimulatorDeviceEntity, event: PropertyChangeEvent, state: DeviceBehaviorState): ScheduledPropertyUpdate[]; private scheduleTransitionForChannel; tick(device: SimulatorDeviceEntity, state: DeviceBehaviorState, now: number): import('./device-behavior.interface').BehaviorTickResult[]; }