import { LintError } from './errors.js'; export declare class LintResults { private data; constructor(data: { orphans: string[]; linkErrors: LintError[]; }); get orphans(): string[]; get linkErrors(): LintError[]; get errorCount(): number; get warningCount(): number; hasErrors(): boolean; getAllErrors(): LintError[]; private orphanErrors; } //# sourceMappingURL=results.d.ts.map