/// import { UseControllerProps } from 'react-hook-form'; type Props = { title?: string; description?: string; }; declare function Toggle(props: Props & UseControllerProps): JSX.Element; export default Toggle;