import { Option, Matcher } from '../../../../../../../src/types'; import { FieldHints } from './HintFunctions'; interface HintFieldsProps { fieldValueHints: FieldHints[]; fullSuggestionField: string | null; maxHints: number; onFullSuggestionFieldChange: (field: string | null) => void; onSelectOption: (option: Option | '(' | ')', optionTo?: Option) => void; onDeselectOption: (matcher: Matcher) => void; } export default function HintFields({ fieldValueHints, fullSuggestionField, maxHints, onFullSuggestionFieldChange, onSelectOption, onDeselectOption, }: HintFieldsProps): JSX.Element; export {};