import { IComboBoxOptionStyles } from "office-ui-fabric-react/lib/components/ComboBox"; import { IAutofillProps } from "office-ui-fabric-react/lib/components/Autofill"; import { IKeytipProps } from "office-ui-fabric-react/lib/components/Keytip"; import { SPHttpClient } from '@microsoft/sp-http'; export interface IComboBoxListItemPickerProps { autoComplete?: "on" | "off"; autofill?: IAutofillProps; comboBoxOptionStyles?: Partial; allowFreeform?: boolean; keytipProps?: IKeytipProps; multiSelect?: boolean; onMenuDismiss?: () => void; onMenuOpen?: () => void; text?: string; columnInternalName: string; keyColumnInternalName?: string; webUrl: string; spHttpClient: SPHttpClient; listId: string; filter?: string; className?: string; defaultSelectedItems?: any[]; disabled?: boolean; suggestionsHeaderText?: string; noResultsFoundText?: string; onInitialized?: () => void; onSelectedItem: (item: any) => void; }