import { Options } from "prettier"; import { Formatter } from "../types"; export declare type PrettierOptions = { projectRoot: string; enabled?: boolean; }; export declare class Prettier implements Formatter { private _enabled; private readonly _projectRoot; private _options?; constructor({ projectRoot, enabled }: PrettierOptions); readConfig(): Promise; format(filePath: string, code: string): Promise; } export declare const noopPrettier: Prettier;