import React from 'react'; type SearchResultListItem = { icon?: React.ReactNode; itemLabel: string; itemSubLabel?: string | null; itemLink: string; className?: string; itemActive?: boolean; isExternalLink?: boolean; itemCategory?: string; searchTerm?: string | null; showImage?: boolean; onMouseEnter?: () => void; isAiSearchLoading?: boolean; onOpenDrawer?: () => void; }; declare const SearchResultListItem: React.FC; export default SearchResultListItem; //# sourceMappingURL=SearchResultListItem.d.ts.map