import { FC } from "react"; import { Select as InternalSelect } from "@mui/material"; type SelectProps = { name: string; label: string; formState: Record; children: React.ReactNode; }; export const Select: FC = ({ name, label, formState, children, }) => ( {children} );