import React from 'react'; import type { JSX } from 'react'; import type { SearchItemData } from '../../core/types'; type ActiveItem = T & { active?: boolean; }; export type SearchItemProps = { item: ActiveItem; onClick?: VoidFunction; product?: { name: string; icon?: string; }; className?: string; innerRef?: React.ForwardedRef; }; export declare function SearchItem({ onClick, item, className, product, innerRef }: SearchItemProps): JSX.Element; export {};