import React from 'react';
import { TypeaheadOption } from '../../types';
interface SearchInputProps {
  onChange: (input: string) => void;
  searchResults: TypeaheadOption[];
  onOptionSelect: (val: TypeaheadOption) => void;
  highlightTarget: string;
  label: string;
  isSecondInput?: boolean;
  isDoubleInput?: boolean;
  isDisabled?: boolean;
  isLoading?: boolean;
}
declare const SearchInput: React.FC<SearchInputProps>;
export default SearchInput;
