import { ReactNode, default as React, HTMLAttributes } from 'react'; import { LinkElementType, LinkProps } from '../..'; export interface SearchHistoryTermProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Defines the text displayed in history term item. */ value: string; /** * Props for the link from term component. */ linkProps?: Partial>; /** * A React component that will be rendered as an icon. */ icon?: ReactNode; } declare const SearchHistoryTerm: ({ testId, value, linkProps, icon, }: SearchHistoryTermProps) => React.JSX.Element; export default SearchHistoryTerm; //# sourceMappingURL=SearchHistoryTerm.d.ts.map