import { IUiSchemaComboboxItem } from "../core/schemas/types"; /** * To be used with combobox items; determines if a given combobox item is selected * @param node the combo box item (to possible check) * @param values the selected values in the greater combobox options * @param selectionMode the selection mode of the combobox (this determines if children's selection status determines the parent's selection status) * @returns whether or not the combo box item is selected */ export declare function isComboboxItemSelected(node: IUiSchemaComboboxItem, values: string | string[], selectionMode: string): boolean;