import * as React from 'react'; interface SwitchProps { edge?: 'end' | 'start'; size?: 'small' | 'medium'; color?: 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning'; control?: React.ReactNode; label?: any; sx?: any; handleChange?: any; checked?: boolean; name?: string; toggle?: boolean; } declare const Switch: React.ForwardRefExoticComponent>; export default Switch;