import React from 'react'; import type { ISearchResultSet } from '../infrastructure/infrastructureSearch.service'; import type { SearchResultType } from './searchResultType'; import './searchResults.less'; export interface ISearchResultsProps { selectedTab: string; resultSets: ISearchResultSet[]; isSearching: boolean; } export interface ISearchResultsState { active: SearchResultType; } export declare class SearchResults extends React.Component { state: { active: any; }; componentWillReceiveProps(newProps: ISearchResultsProps): void; render(): JSX.Element; }