import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { ConnectionState } from '../../../modules/devices/devices.constants'; import { SIMULATOR_PLUGIN_NAME } from '../simulator.constants'; export declare class SimulatorUpdatePluginConfigDto extends UpdatePluginConfigDto { type: typeof SIMULATOR_PLUGIN_NAME; updateOnStart?: boolean; simulationInterval?: number; latitude?: number; smoothTransitions?: boolean; connectionStateOnStart?: ConnectionState; }