import { Value } from '../../../../../../../src/types'; interface MatcherListProps { options: string[]; values: Value[]; activeIndex: number; selectedIndex: number | null; onSelectOption: (index: number, text: string) => void; onHoverOption: (index: number) => void; onDeleteOption: (index: number) => void; } export default function MatcherList({ options, values, activeIndex, selectedIndex, onSelectOption, onHoverOption, onDeleteOption, }: MatcherListProps): JSX.Element; export {};