import { FormattedFile } from '../../commands/format'; import Base from './base'; interface Stats { time: bigint; } export default class DocumentFormatFormatter extends Base { private readonly paths; private readonly stats; constructor(paths: FormattedFile[], stats: Stats); log(): void; formatFormattingTime(time: bigint): string; } export {};