import { SearchViewTypes } from '../InkeepWidgetProps'; import { SearchResultType } from './SearchResults'; interface SearchResultsBySourceProps { searchResults: SearchResultType[]; showLoading?: boolean; isAllTab: boolean; activeTab: boolean; tabLabel?: string; isStacked?: boolean; partialDivider?: boolean; spaceBetweenResults?: number; viewType: SearchViewTypes; horizontallyCondensed?: boolean; verticallyCondensed?: boolean; showHoverIcon?: boolean; openLink?: boolean; backgroundColorOnHighlight?: string; selfContainedFocusForCards?: boolean; shouldOpenLinksInNewTab?: boolean; onClose?: () => void; } declare const SearchResultsBySource: (props: SearchResultsBySourceProps) => import("react/jsx-runtime").JSX.Element; export default SearchResultsBySource; export type { SearchResultsBySourceProps };