export declare const highlightOptionClasses: { highlight: string; }; interface HighlightOptionProps extends React.HTMLAttributes { /** * The text that has been typed by the user. */ inputText: string; /** * The label of the option being rendered. */ optionText: string; } declare const HighlightOption: (props: HighlightOptionProps) => JSX.Element; export default HighlightOption;