import React, { MouseEvent } from 'react';
import type { RecentSearchTerms } from '../datastores/recentSearches';
export interface RecentSearchesProps {
    index: number;
    maxVisibleTypePillChars?: number;
    onClick: (value: RecentSearchTerms) => void;
    onDelete: (event: MouseEvent) => void;
    value: RecentSearchTerms;
}
export declare function RecentSearchItem(props: RecentSearchesProps): React.JSX.Element;
//# sourceMappingURL=RecentSearchItem.d.ts.map