import { FC } from 'react'; import MessageBox, { MessageBoxProps } from './MessageBox'; const InputMessageBox: FC> = ({ sx, text, ...restProps } = {}) => ( <> {text && ( )} ); export default InputMessageBox;