import type { CheckRun, ClassifiedCheck, TriagedCheck } from "../types.mts"; import type { RepoInfo } from "../github/client.mts"; import { type StateKey } from "../state/rest-cache.mts"; export declare function triageFailingChecks(failingChecks: ClassifiedCheck[], repo: RepoInfo, stateKey?: StateKey): Promise; export declare function fetchStartupFailureChecks(repo: RepoInfo, headSha: string, prNumber: number, stateKey?: StateKey): Promise;