import type { Octokit } from "@octokit/rest"; export type CheckStatus = "pending" | "in_progress" | "completed" | "unknown"; export type BugbotCheckResult = { status: CheckStatus; conclusion: string | null; checkName: string | null; }; export declare const getBugbotCheckStatus: (octokit: Octokit, owner: string, repo: string, ref: string) => Promise; export declare const isBugbotStillReviewing: (octokit: Octokit, owner: string, repo: string, ref: string) => Promise; //# sourceMappingURL=checks.d.ts.map