import type { RunArtifact, TrendInfo } from "../types.js"; export interface MatrixRow { artifact: RunArtifact; trend?: TrendInfo; } export declare function renderMatrixComment(rows: MatrixRow[]): string;