import SwitchInterface from '../io/SwitchInterface'; import ControlPanelInterface from './ControlPanelInterface'; declare class ControlPanel implements ControlPanelInterface { getSelectSwitch(): SwitchInterface; getResetButton(): SwitchInterface; getColorSwitch(): SwitchInterface; getDifficultySwitchP0(): SwitchInterface; getDifficultySwitchP1(): SwitchInterface; private _selectSwitch; private _resetButton; private _colorSwitch; private _difficutlyP0; private _difficutlyP1; } export { ControlPanel as default };