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