import { RefObject } from 'react'; import { SearchState } from '../../../types'; export type SearchItemProps = { search?: SearchState; itemRef?: RefObject; }; export declare function SearchItem({ search, itemRef }: SearchItemProps): import("react/jsx-runtime").JSX.Element | null;