import React from 'react'; import type { ISearchResultPodData } from './SearchResultPods'; export interface IChildComponentProps { results: ISearchResultPodData[]; onRemoveItem?: (categoryName: string, itemId: string) => void; onRemoveProject?: (projectId: string) => void; onResultClick: (categoryName: string) => void; } export interface IRecentlyViewedItemsProps { Component: React.ComponentType; limit?: number; } export declare function RecentlyViewedItems(props: IRecentlyViewedItemsProps): JSX.Element;