import { type PrettierConfigType } from '../../core/mod.js'; type ConstructorArgs = { path: string; contents: PrettierConfigType; }; export declare class PrettierJson { path: string; contents: PrettierConfigType; private constructor(); static toPath(projectName: string): string; static exists(path: string): Promise; static openFromPath(path: string): Promise; write(): Promise; refresh(): Promise; static create({ path }: ConstructorArgs): PrettierJson; } export {}; //# sourceMappingURL=prettier-json.d.ts.map