import { type MultipleSelectBoxOption, type AllowedValueTypes } from '../MultipleSelectBox.types'; /** * Inserts a value into a sorted array based on the original options order. * This function maintains the order of the options while inserting a new value at the appropriate position. * * @param sortedValues - Array of currently selected values that are already sorted * * @param newValue - New value to be inserted * * @param options - Array of all available options (used as reference for ordering) * * @returns A new sorted array with the inserted value */ export declare function insertOptionValueInSortedOrder = Record>(sortedValues: MultipleSelectBoxOption['value'][], newValue: MultipleSelectBoxOption['value'], options: MultipleSelectBoxOption[]): MultipleSelectBoxOption['value'][];