import * as React from 'react'; import { Matcher, ReactFacetedSearchStyles } from '../../types'; import Nemonic from '../../../component/types/Nemonic'; interface MatcherDisplayProps { matcher: Matcher | Nemonic; first?: boolean; deleted?: boolean; showWarning?: boolean; onLabelHeight?: (hieight: number) => void; onShowToolTip?: (show: boolean) => void; bold?: boolean; styles?: ReactFacetedSearchStyles; } declare const MatcherDisplay: React.FC; export default MatcherDisplay;