import { HTMLAttributes, default as React } from 'react'; import { LinkElementType, LinkProps } from '../../'; export interface SearchTopTermProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Search term to be shown. */ value: string; /** * Props for the `` rendered by this component. */ linkProps?: Partial>; /** * Current term's position in a list of search terms. */ index: number; } declare const SearchTopTerm: React.ForwardRefExoticComponent>; export default SearchTopTerm; //# sourceMappingURL=SearchTopTerm.d.ts.map