import { Option, Selected, UpdateHandler } from '../../../types';
import { Item } from '../../Dropdown.types';
type Options = {
    allowsCustomValue?: boolean;
    onUpdate: UpdateHandler;
    options: Option[];
    search: string;
    selected: Selected;
};
export declare function buildItems({ allowsCustomValue, onUpdate, options, search, selected, }: Options): [string[], Item[]];
export {};
