import { ScoobyAPI } from "@animaapp/scooby-api"; import { ReviewApproval } from "@animaapp/scooby-shared"; declare type CommonContext = { commitHash: string; api: ScoobyAPI; }; declare type ApproveReportsContext = CommonContext & { reports: string[] | "all"; }; export declare function runApproveReports(reports: string[] | "all"): Promise; export declare function approveReports(context: ApproveReportsContext): Promise; declare type ApproveReportContext = CommonContext & { reportName: string; }; export declare function generateReportApprovals(context: ApproveReportContext): Promise; export {};