import React from 'react'; import { useAppDesignTokens } from '../../theme'; import type { SearchSuggestionsProps } from './types'; export declare function SearchSuggestions({ query, suggestions, renderItem, onSelectSuggestion, maxSuggestions, style, emptyComponent, }: SearchSuggestionsProps): React.JSX.Element | null; /** * Default suggestion renderer (simple text with highlighting) */ export declare const DefaultSuggestionRenderer: (text: string, query: string, tokens: ReturnType) => React.JSX.Element;