import React from 'react'; import type { IRecentHistoryEntry } from '../../history'; import type { SearchResultType } from '../searchResult/searchResultType'; export type ISearchResult = IRecentHistoryEntry & { displayName: string; account?: string; }; export interface ISearchResultPodData { category: string; config: SearchResultType; results: ISearchResult[]; } export interface ISearchResultPodsProps { results: ISearchResultPodData[]; onRemoveProject?: (projectId: string) => void; onRemoveItem?: (categoryName: string, itemId: string) => void; onResultClick: (categoryName: string) => void; } export declare class SearchResultPods extends React.Component { render(): JSX.Element; }