import { ReactNode } from 'react'; import { FormControlLabelProps, FormControlProps, SwitchProps as MuiSwitchProps } from '@mui/material'; export type SwitchProps = Omit & { error?: boolean; formControlLabelProps?: Omit; formControlProps?: Omit; helperText?: ReactNode; label?: ReactNode; }; export declare const Switch: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;