import React from 'react';
import { SwitchProps } from './Switch.types';
/**
 * Switches toggle the state of a single setting on or off
 */
declare const Switch: React.FC<SwitchProps>;
export default Switch;
