/// import { SelectProps } from '@mui/material/Select/Select'; interface IshipperSelect extends SelectProps { className?: any; children?: any; label?: any; } /** * This is a Mui Select branded for Shipper * * Demos: * - [Selects](https://mui.com/components/selects/) * * API: * - [Select API](https://mui.com/api/select/) * - inherits [OutlinedInput API](https://mui.com/api/outlined-input/) */ export default function ShipperSelect({ className, children, label, ...delegated }: IshipperSelect): JSX.Element; export {};