import type React from "react";
export interface MatchScoreProps {
    score: number;
    target: number;
}
export declare const MatchScore: React.FC<MatchScoreProps>;
