import { Option } from '../../../../../../../src/types'; import { Category, HintItem } from './HintFunctions'; interface HintBarItemProps { category: Category; hint: HintItem; index: number; tabIndexOffset: number; onSelectOption: (option: Option | '(' | ')') => void; } export default function HintBarItem({ category, hint, index, tabIndexOffset, onSelectOption, }: HintBarItemProps): JSX.Element; export {};