export type JsonObjectFile = Record; export declare function readJsonObjectFile(filePath: string, options?: { strict?: boolean; }): Promise; export declare function writeJsonObjectFileAtomically(filePath: string, value: JsonObjectFile): Promise; export declare function mutateJsonObjectFile(filePath: string, mutate: (current: JsonObjectFile) => JsonObjectFile | Promise, options?: { strict?: boolean; }): Promise; //# sourceMappingURL=json-settings.d.ts.map