import { IColor } from '../../components/ConnectionsPanels/types'; export declare enum DeviceStateValues { ON = "ON", OFF = "OFF" } export declare type ActionSwitchType = { SwitchAction: DeviceStateValues; }; export declare type ActionPlaySoundType = { SoundNumber: number; }; export declare type ActionSwitchFrameLedType = IColor & { SwitchFrameLedAction: DeviceStateValues; }; export declare type ActionInvokeSceneType = { SceneId: string; }; export declare type DeviceActionParamType = ActionSwitchType & ActionPlaySoundType & ActionSwitchFrameLedType & ActionInvokeSceneType; export declare type DeviceActionType = { actionParameters: DeviceActionParamType; device: any; dockNumber: string; deviceNumber: string; }; export default DeviceStateValues;