import React from 'react'; import { MultiSelectWithSearchProps } from './type'; declare function MultiSelectWithSearch({ options, onChangeOptions, selectedOptions, placeholder, isLoading, searchBy, disabled, }: MultiSelectWithSearchProps): React.JSX.Element; export default MultiSelectWithSearch;