import { LocalRegressionReport } from "@animaapp/scooby-shared"; 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; matchedSources: MatchedSources; }): Promise; export declare function generateMainBranchReport(context: { name: string; commitHash: string; entries: SourceEntry[]; }): Promise;