import { ScanReport } from '../types'; import { LintConfig, LintReport } from './types'; export declare class I18nLinter { private config; constructor(config?: Partial); lint(scanReport: ScanReport): LintReport; getExitCode(report: LintReport): number; private addIssue; private isRuleEnabled; private getRuleSeverity; private shouldIgnoreFile; private loadTranslationFile; }