import { type JSONValue, type StringableJSONValue } from "./utils/index.js"; export declare function readJson({ path, }: { path: string; }): Promise; export declare function writeJson({ path, data, append, }: { path: string; data: T; append?: boolean; }): Promise; export declare function updateJson({ path, merge, }: { path: string; merge: (existingData: T) => T; }): Promise; //# sourceMappingURL=json.d.ts.map