import { IComboBoxOption } from '@fluentui/react/lib/ComboBox';
/**
 * @interface IPropertyFieldEditableComboBoxHostProps
 * @description Core properties settable for an editable combo box
 */
export interface IPropertyFieldEditableComboBoxHostProps {
    disabled: boolean;
    label: string;
    options: IComboBoxOption[];
    selectedText: string;
    maxFillInLength: number | undefined;
    showTooltip: boolean;
    tooltipText: string;
    onOptionChanged: (text: string, wasAdded: boolean) => void;
}
/**
 * @interface IPropertyFieldEditableComboBoxHostState
 * @description Core state variables used by an editable combo box
 */
export interface IPropertyFieldEditableComboBoxHostState {
    options: IComboBoxOption[];
    selectedText: string | undefined;
}
//# sourceMappingURL=IPropertyFieldEditableComboBoxHost.d.ts.map