import React from 'react'; import { PopularCard, PopularLink, Categories } from '../SearchButton/SearchButton'; type SearchModalProps = { onClose: () => void; algoliaAppId: string; algoliaPublicApiKey: string; categoryOrder?: Categories; categoriesToShow?: Categories; popularLinks?: Array; popularCards?: Array; openAiDrawer?: boolean; hideSuggestions?: boolean; spotlight?: Categories; }; declare const SearchModal: React.FC; export default SearchModal; //# sourceMappingURL=SearchModal.d.ts.map