import { JSONObject } from "@bconnorwhite/json-types"; import { FileFields, File } from "./"; export declare type JSONFileType = "json"; export declare type JSONFile = File; export interface JSONFileFields extends FileFields { merge: (content?: T) => Promise; mergeSync: (content?: T) => void; } export declare const jsonFileType = "json"; export declare function getJSONFileFields(path: string): JSONFileFields; export { JSONObject };