import { BatchAction, UpdateHandler } from '../../../types';
import { Item } from '../../Dropdown.types';
type Options = {
    addFound: BatchAction;
    onUpdate: UpdateHandler;
    values: string[];
};
export declare function buildBulkCustomValue({ addFound, onUpdate, values }: Options): Item;
export {};
