import { default as React, HTMLAttributes } from 'react'; export interface SearchHistoryProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Title attribute for the
tag rendered by this component. */ title: string; /** * Defines the text displayed in clear history button. */ clearLabel?: string; /** * Event handler for click on clear history button. */ onClear?: () => void; } declare const SearchHistory: ({ testId, title, clearLabel, onClear, children, ...otherProps }: SearchHistoryProps) => React.JSX.Element | null; export default SearchHistory; //# sourceMappingURL=SearchHistory.d.ts.map