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 ProjectorDelayedBehavior extends BaseDeviceBehavior { private static readonly POWER_ON_DELAY_MS; private static readonly POWER_OFF_DELAY_MS; getType(): string; getSupportedCategory(): DeviceCategory; onPropertyChanged(_device: SimulatorDeviceEntity, event: PropertyChangeEvent, state: DeviceBehaviorState): ScheduledPropertyUpdate[]; }