/// import { InputLabelProps } from '@mui/material/InputLabel'; interface LabelProps extends InputLabelProps { optional?: boolean; } export default function RegenInputLabel({ optional, ...props }: LabelProps): JSX.Element; export {};