import type { CheckRunSummary } from '@generacy-ai/cockpit'; import type { ChecksRollup } from './snapshot.js'; /** * Reduce a CheckRunSummary[] to a ChecksRollup. Empty array → 'none' (no CI * reported on the ref; legitimate data). Any FAILURE/CANCELLED → 'failure'. * All SUCCESS/NEUTRAL/SKIPPED → 'success'. Otherwise → 'pending'. */ export declare function rollup(checks: CheckRunSummary[]): ChecksRollup; //# sourceMappingURL=check-rollup.d.ts.map