import React from 'react'; import { SelectedOption, SelectProps } from './types'; declare const getInputLabelFromSelectedOptions: (selectedOptions: Record) => string; declare const getElementText: (element: React.ReactElement) => string; declare const getSelectOptions: (defaultValue: SelectProps['defaultValue'], value: SelectProps['value'], children: React.ReactNode) => Record; declare const getSelectedIds: (selectedOptions: Record, isMultiSelect: boolean) => string | string[] | null; declare const isStringIncluded: (baseString: string, lookupString: string) => boolean; export { getSelectOptions, getElementText, getInputLabelFromSelectedOptions, getSelectedIds, isStringIncluded };