/** * Copyright Aquera Inc 2025 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import type { ComboboxOption } from './types.js'; export declare class ComboboxSelectionManager { static createOptionsFromValues(value: string | string[], data: any[], getDisplayText: (item: any) => string, getItemValue?: (item: any) => string): ComboboxOption[]; static toggleMultiValue(currentValues: string[], optionValue: string): string[]; static removeValue(currentValues: string[], removeValue: string): string[]; }