import React from 'react'; import type { SelectChangeEvent } from '@mui/material/Select'; interface Props { name: string; value: number; options: JSX.Element; handleChange: (event: SelectChangeEvent) => void; } declare const DropDown: ({ name, value, options, handleChange }: Props) => React.JSX.Element; export default DropDown;