import { LabelKey, Option } from '../types'; interface Props { activeItem?: Option; labelKey: LabelKey; multiple: boolean; selected: Option[]; text: string; } declare function getInputText(props: Props): string; export default getInputText;