import * as React from 'react'; import { SelectProps } from '../type'; export interface SelectValueProps extends SelectProps { hasValue?: boolean; } declare const SelectValue: React.ForwardRefExoticComponent>; export default SelectValue;