import React from 'react'; import { Select as SelectPrimitive, SelectProps as SelectPropsPrimitive } from '@modulz/primitives'; export type SelectProps = SelectPropsPrimitive type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const Select = React.forwardRef((props, ref) => { return ( ); }); export {Option ,OptionGroup} from '@modulz/primitives';