import { type IconName } from '@grafana/data';
export declare const ALL_OPTION_VALUE = "__GRAFANA_INTERNAL_MULTICOMBOBOX_ALL_OPTION__";
export type ComboboxOption<T extends string | number = string> = {
    label?: string;
    value: T;
    description?: string;
    group?: string;
    infoOption?: boolean;
    icon?: IconName;
};
