interface Props {
    headerVariants: Variants;
    matchResultsLength: number;
    showRematchOptions: boolean;
    setShowRematchOptions: (v: boolean) => void;
    handleSetAllMatchedToPending: () => void;
    matchingProcessIsLoading: boolean;
    rateLimitIsRateLimited: boolean;
    statusSummary: {
        total: number;
        matched: number;
        manual: number;
        pending: number;
        skipped: number;
        reviewed: number;
        completionPercent: number;
    };
    pendingBacklog: number;
}

Properties

headerVariants: Variants
matchResultsLength: number
showRematchOptions: boolean
setShowRematchOptions: (v: boolean) => void
handleSetAllMatchedToPending: () => void
matchingProcessIsLoading: boolean
rateLimitIsRateLimited: boolean
statusSummary: {
    total: number;
    matched: number;
    manual: number;
    pending: number;
    skipped: number;
    reviewed: number;
    completionPercent: number;
}
pendingBacklog: number