import { ReactSwitchProps } from 'react-switch';
import './Switch.css';
export interface SwitchProps extends ReactSwitchProps {
    styling?: 'docusaurus' | 'material' | 'github' | 'fluent';
}
export default function Switch(SwitchProps: SwitchProps): JSX.Element;
