import type { CheckResult, DiffArtifact, RunArtifact, TrendInfo } from "../types.js"; export interface ParsedFinding { severity: string; message: string; } export declare function extractSecurityFindings(checks: CheckResult[]): ParsedFinding[]; export declare function extractQualityFindings(checks: CheckResult[]): ParsedFinding[]; export declare function countCapabilities(checks: CheckResult[]): { tools: number; prompts: number; resources: number; }; export declare function blockquoteList(items: string[], max?: number): string; export declare function prCommentFooter(): string; export declare function renderPrComment(artifact: RunArtifact | DiffArtifact, trend?: TrendInfo): string;