import { LintTranslation } from '../../types/lint-translation'; import Base from './base'; interface Stats { time: bigint; } export default class ProjectLintFormatter extends Base { private readonly lintTranslations; private readonly stats; constructor(lintTranslations: LintTranslation[], stats: Stats); log(): void; formatLintingTime(time: bigint): string; formatMessageCheck(check: string): string; } export {};