/// declare module 'react-tag-autocomplete'; import './AcmSearchbar.css'; export declare type DropdownSuggestionsProps = { id: string | number; name: string; kind?: 'filter' | 'value' | 'label'; disabled?: boolean; }; declare type AcmSearchbarProps = { loadingSuggestions: boolean; queryString: string; suggestions: DropdownSuggestionsProps[]; currentQueryCallback: (query: string) => void; toggleInfoModal: () => void; }; export declare function AcmSearchbar(props: AcmSearchbarProps): JSX.Element; export {};