export function classifyPrForSweep(params: { pr: { draft?: boolean; created_at: string; updated_at: string; mergeable?: boolean | null; auto_merge?: object | null; }; ciRuns: Array<{ conclusion: string | null }>; botCloseCount: number; now: number; }): { action: "refire" | "skip"; reason: string }; export function runPrCiSweeper(params: { github: Record; context: Record; core: Pick & { setFailed: (message: string) => void }; dryRun?: boolean; appSlug?: string; }): Promise>;