import { SelectFound, UpdateHandler } from '../../../types';
import { Item } from '../../Dropdown.types';
type Options = {
    onUpdate: UpdateHandler;
    search: string;
    selectFound: SelectFound;
    values: string[];
};
export declare function buildSelectFound({ onUpdate, selectFound, search, values }: Options): Item;
export {};
