import { HTMLAttributes, default as React } from 'react'; import { LinkElementType, LinkProps } from '../..'; export interface SearchProductItemProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, * testing-library, and jest). */ testId?: string; /** * Props for the link from SearchProduct component. */ linkProps?: Partial>; } declare const SearchProductItem: React.ForwardRefExoticComponent>; export default SearchProductItem; //# sourceMappingURL=SearchProductItem.d.ts.map