import type { AuditReport } from "./types.js";
export { renderAuditSarif } from "./sarif.js";
/**
 * Render the full audit report in the terminal text format.
 *
 * @param report - Audit report produced by `runAudit` or `runAuditBatch`.
 * @returns Human-readable terminal output with ANSI status labels.
 */
export declare function renderAuditText(report: AuditReport): string;
export declare function renderAuditJson(report: AuditReport): string;
/**
 * Render the full audit report in markdown.
 *
 * @param report - Audit report produced by `runAudit` or `runAuditBatch`.
 * @returns Markdown suitable for PR comments and copied audit summaries.
 */
export declare function renderAuditMarkdown(report: AuditReport): string;
//# sourceMappingURL=render.d.ts.map