interface MatchStatisticsCardProps {
    matchStats: {
        total: number;
        matched: number;
        pending: number;
        manual: number;
        skipped: number;
    };
    noMatchesCount: number;
    searchTerm: string;
    onSearchTermChange: (value: string) => void;
    searchInputRef: RefObject<null | HTMLInputElement>;
}

Properties

matchStats: {
    total: number;
    matched: number;
    pending: number;
    manual: number;
    skipped: number;
}
noMatchesCount: number
searchTerm: string
onSearchTermChange: (value: string) => void
searchInputRef: RefObject<null | HTMLInputElement>