import { HostedReport, Review } from "@animaapp/scooby-shared"; import { ReportStatus } from "."; declare type ComputeReportStatusesContext = { repositoryName: string; commitHash: string; isMainBranch: boolean; s3bucket: string; s3region: string; webBaseUrl: string; }; export declare function computeReportStatuses(context: ComputeReportStatusesContext, reports: HostedReport[], review: Review): Promise; export {};