import { ReactNode } from 'react'; import { FormControlLabelProps, FormControlProps, FormHelperTextProps, SwitchProps as MuiSwitchProps } from '@mui/material'; export type SwitchProps = Omit & { label?: string; required?: boolean; helperText?: ReactNode; value?: boolean; error?: boolean; disabled?: boolean; name?: string; slotProps?: { formControlLabel?: Omit; helperText?: FormHelperTextProps; formControl?: Omit; }; }; declare const Switch: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare module '@mui/material' { interface Components { ReevolveSwitch?: { defaultProps?: Partial; }; } } export default Switch; //# sourceMappingURL=Switch.d.ts.map