import type { ScanResult } from "@hookwarden/engine"; export interface RenderSummaryOptions { readonly useAnsi: boolean; readonly durationMs?: number; readonly suppressedCount?: number; readonly staleCount?: number; readonly preExistingCount?: number; readonly parseCandidatesCount?: number; readonly parsedFilesCount?: number; readonly diffBase?: string | null; readonly rulePackDrift?: { readonly from: string; readonly to: string; } | null; readonly verbose?: boolean; readonly testExcludedCount?: number; readonly exitCode?: number; readonly failOn?: string; } export declare function renderSummary(result: ScanResult, opts: RenderSummaryOptions): string; //# sourceMappingURL=summary.d.ts.map