import type { JSX } from 'react'; export type SearchRecentProps = { onSelect: (value: string, index: number) => void; className?: string; }; export declare function SearchRecent({ onSelect, className }: SearchRecentProps): JSX.Element | null;