/// <reference types="react" />importtype { ISwitch } from'./ISwitch';
/**
* Switches toggle the state of a single item on or off.
*/declarefunctionSwitch({ onChange, isSelected, isDisabled, name, hasFrozenState, ...props }: ISwitch): JSX.Element;
exportdefaultSwitch;