/** * Lint console reporter — terminal output for lint validation results. * * Prints per-skill pass/fail summaries with optional verbose evidence. */ import type { LintResults, LintReporter } from "./types.js"; export interface LintConsoleReporterOptions { verbose?: boolean; stream?: NodeJS.WritableStream; } export declare class LintConsoleReporter implements LintReporter { readonly name = "console"; private verbose; private stream; constructor(options?: LintConsoleReporterOptions); report(results: LintResults): Promise; private reportSkill; private writeSummary; private write; private formatEvidence; } //# sourceMappingURL=lint-console.d.ts.map