/** * Different types of Switch designs. * @public */ declare enum SwitchDesign { /** * Defines the Switch as Textual * @public */ Textual = "Textual", /** * Defines the Switch as Graphical * @public */ Graphical = "Graphical" } export default SwitchDesign;