import React from 'react'; import { TooltipProps } from '@mui/material'; import { FieldProps } from 'formik'; interface ToggleProps extends FieldProps { className?: string; label: string; type?: 'checkbox' | 'radio'; checked: boolean; description?: any; content?: any; activeContent?: any; tooltip?: TooltipProps['title']; disabled?: boolean; value?: string; triggerOnChange?: (v: any) => Promise; } declare const Toggle: React.FC; export default Toggle;