import React from 'react'; import { type OptionType, type SingleValueProps } from '@atlaskit/select'; /** * This creates a functional component that `react-select` will use to make the * SingleValue part of the different pickers. */ export declare const makeSingleValue: ({ id, lang }: { id?: string; lang: string; }) => ({ children, className, clearValue, cx, data, getStyles, getValue, hasValue, isDisabled, isMulti, isRtl, options, selectOption, selectProps, setValue, ...rest }: SingleValueProps) => React.JSX.Element;