import { Matcher } from '../../../../../../../src/types'; interface MatcherDisplayProps { matcher: Matcher; hideComparison?: boolean; } export default function MatcherDisplay({ matcher, hideComparison, }: MatcherDisplayProps): JSX.Element; export {};