import { LintResult } from "../linter/LinterContext.js";
export declare class Text {
    #private;
    private readonly cwd;
    constructor(cwd: string);
    format(lintResults: LintResult[], showDetails: boolean, autofix: boolean, quiet?: boolean): string;
}
