import { type DefaultSelectValue, type OptionsType, type SelectOptionType } from './Select.types'; import { type SelectItemProps } from './components/item'; import { type ChipInputValue } from '../../ChipInput'; export declare function convertToChipInputValue(option: SelectOptionType): ChipInputValue; type keywordOptionsProps = Pick>, 'searchIgnore' | 'keywords' | 'label'>; export declare const getSearchPropsByOptions: ({ keywords, searchIgnore, label }: keywordOptionsProps) => { keywords: string[]; searchIgnore: true; } | { keywords: string[]; searchIgnore: false; }; type filterProps = { value: string; search: string; keywords?: string[]; filter?: (value: string, search: string, keywords?: string[]) => number; }; export declare const selectSearchFilter: ({ value, search, keywords, filter }: filterProps) => number; export {}; //# sourceMappingURL=Select.utils.d.ts.map