import { ReactNode, default as React, HTMLAttributes } from 'react'; import { LinkElementType, LinkProps } from '../..'; export interface SearchAutoCompleteTermProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Props for the link from term component. */ linkProps?: Partial>; /** * A React component that will be rendered as an icon. */ icon?: ReactNode; /** * Term researched. */ term: string; /** * Suggestion proposed with auto complete. */ suggestion: string; } declare const SearchAutoCompleteTerm: ({ testId, suggestion, term, linkProps, icon, }: SearchAutoCompleteTermProps) => React.JSX.Element; export default SearchAutoCompleteTerm; //# sourceMappingURL=SearchAutoCompleteTerm.d.ts.map