import { Config } from '../../types/config'; import { Project } from '../../types/project'; import Base from './base'; interface DocumentTarget { documentPath: string; path: string; language: string; } export default class ProjectStatsFormatter extends Base { private readonly project; private readonly config; private readonly targets; private readonly version; constructor(project: Project, config: Config, targets: DocumentTarget[], version?: string); percentageReviewedString(number: number, translationsCount: number): string; log(): void; } export {};