import { Field, Option, Matcher } from '../../../../../../../src/types'; interface HintProps { selectedField: Field | null; onSelectOption: (option: Option | '(' | ')', optionTo?: Option) => void; onDeselectOption: (matcher: Matcher) => void; } export default function Hints({ selectedField, onSelectOption, onDeselectOption, }: HintProps): JSX.Element; export {};