import Checkbox from '@mui/material/Checkbox'; import FormControlLabel from '@mui/material/FormControlLabel'; import TextField from '@mui/material/TextField'; import Typography from '@mui/material/Typography'; import { ImageUpload, useUiTranslator } from '@react-page/editor'; import React from 'react'; import type { ImageControlType } from '../types/controls'; const ImageControls: ImageControlType = (props) => { const { t } = useUiTranslator(); return ( <> {/* Button and existing image text box */}