import { FC } from 'react';
import { SelectContextProps } from '../context';
interface SelectValueProps extends SelectContextProps {
    items: string[];
}
declare const SelectValue: FC<SelectValueProps>;
export default SelectValue;
