import SwitchInterface from '../../../machine/io/SwitchInterface'; declare class ShadowSwitch { toggle(state: boolean): void; setState(state: boolean): void; sync(swtch: SwitchInterface): void; private _state; private _dirty; } export default ShadowSwitch;