import { LocalFidelityRegressionReport } from "@animaapp/scooby-shared"; import { BatchComparisonEntry } from "../../../comparison"; import { MatchedSources } from "../../../matching"; import { SourceEntry } from "../../../types"; import { RegressionCheckResult } from "../../shared/regression"; export declare function generateReport(context: { name: string; commitHash: string; baseCommitHash: string; regressions: RegressionCheckResult; matchedRegressionSources: MatchedSources; fidelityComparisons: BatchComparisonEntry[]; }): Promise; export declare function generateMainBranchReport(context: { name: string; commitHash: string; fidelityComparisons: BatchComparisonEntry[]; }): Promise;