import { ComboboxBaseProps, AutoSizeConditionals } from './Combobox'; import { ComboboxOption } from './types'; interface MultiComboboxBaseProps extends Omit, 'value' | 'onChange' | 'isClearable'> { value?: T[] | Array>; onChange: (option: Array>) => void; isClearable?: boolean; enableAllOption?: boolean; portalContainer?: HTMLElement; } export type MultiComboboxProps = MultiComboboxBaseProps & AutoSizeConditionals; /** * The behavior of the MultiCombobox is similar to that of the Combobox, but it allows you to select multiple options. For all non-multi behaviors, see the Combobox documentation. * * https://developers.grafana.com/ui/latest/index.html?path=/docs/inputs-multicombobox--docs */ export declare const MultiCombobox: (props: MultiComboboxProps) => import("react/jsx-runtime").JSX.Element; export {};