export declare class Formatter { /** * Formats `content` using the Prettier config resolved for `filePath`. * The `filePath` is used both to resolve the nearest `.prettierrc` and * to let Prettier pick the correct parser (e.g. `typescript` for `.ts`). * * Returns the formatted content, or the original content if Prettier * cannot parse or format it. */ static format(content: string, filePath: string): Promise; } //# sourceMappingURL=formatter.d.ts.map