/// import { SwitchProps } from './types'; declare const Switch: { (props: SwitchProps): JSX.Element; defaultProps: { isOn: boolean; onColor: string; offColor: string; size: string; labelStyle: {}; thumbOnStyle: {}; thumbOffStyle: {}; trackOnStyle: {}; trackOffStyle: {}; icon: null; disabled: boolean; }; }; export default Switch;