import React from 'react'; import type { ISearchResultSet } from '../infrastructure/infrastructureSearch.service'; import type { SearchResultType } from './searchResultType'; export interface ISearchResultTabsProps { resultSets: ISearchResultSet[]; activeSearchResultType: SearchResultType; } export declare class SearchResultTabs extends React.Component { render(): React.ReactElement; }