///
import { SwitchProps } from '@material-ui/core';
interface StyleProps {
/** The color of the toggle */
color?: string;
/** The color of the toggle when unchecked */
baseColor?: string;
}
interface RoundedToggleProps extends Omit, StyleProps {
/** If the toggle is checked */
checked?: boolean;
/** Function to call when the toggle is clicked on */
onChange: (checked: boolean) => void;
/** If the Toggle is disabled */
disabled?: boolean;
}
declare function RoundedToggle({ color, baseColor, checked, onChange, disabled, size, }: RoundedToggleProps): JSX.Element;
export default RoundedToggle;