import { Box } from '@mui/material'; import React from 'react'; import TextFieldWithDesc from './TextFieldWithDesc'; import SimpleRadio from './SimpleRadio'; const RadioWithTextField = ({ title, onRadioClick, checked, value, description, onTextChange, radioDescription }: { fieldName: string; title: string; checked: boolean; onRadioClick: () => void; value: string; description: string; onTextChange: (value: string) => void; radioDescription?: string; }) => { return ( ); }; export default RadioWithTextField;