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 ValveRealisticBehavior extends BaseDeviceBehavior { private static readonly FULL_TRAVEL_TIME_MS; getType(): string; getSupportedCategory(): DeviceCategory; onPropertyChanged(device: SimulatorDeviceEntity, event: PropertyChangeEvent, state: DeviceBehaviorState): ScheduledPropertyUpdate[]; tick(device: SimulatorDeviceEntity, state: DeviceBehaviorState, now: number): BehaviorTickResult[]; }