interface DropdownItemTextHighlighterProps { /** Current input value in dropdown for highlighting of matched text */ inputValue: string; textToHighlight: string; } export declare const DropdownItemTextHighlighter: ({ inputValue, textToHighlight, }: DropdownItemTextHighlighterProps) => JSX.Element; export {};