import { ForwardRefExoticComponent } from 'react';
import { SwitchProps } from './switch';
import './styles/index.scss';
export interface SwitchComponent extends ForwardRefExoticComponent<SwitchProps> {
}
declare const ExpandedSwitch: SwitchComponent;
export { SwitchProps };
export default ExpandedSwitch;
