import PropTypes from 'prop-types'; import * as React from 'react'; const Select = React.forwardRef((props, ref) => { const { children, ...filteredProps } = props; return ( ); }); Select.propTypes = { children: PropTypes.node, }; export default Select;