/// interface IMultiSelectSearchInputProps { id: string; selectedItems: any[]; searchVal: string; primaryChip?: number; onChange: (event: any) => void; onCrossIconPressed: (event: any) => void; onChipRightClick?: (event: any, label: any, value: any, isPrimary: boolean) => void; onChipCrossButtonClick: (value: any) => void; isDisabled?: boolean; isPartiallyDisabled?: boolean; onMoreButtonClick: () => void; placeholder?: string; autoFocus?: boolean; } export declare function MultiSelectSearchInput({ selectedItems, onChange, searchVal, onCrossIconPressed, id, onChipRightClick, primaryChip, onChipCrossButtonClick, isDisabled, onMoreButtonClick, placeholder, isPartiallyDisabled, autoFocus }: IMultiSelectSearchInputProps): JSX.Element; export {};