import type { Command } from "commander"; import type { RunArtifact } from "../types.js"; export interface CiReport { title: string; body: string; labels: string[]; hasRegressions: boolean; serverCount: number; failCount: number; } export declare function buildCiReport(artifacts: RunArtifact[]): CiReport; export declare function registerCiReportCommands(program: Command): void;