export declare type JSONLike = { [k: string]: number | string | boolean | JSONLike | JSONLike[]; } | JSONLike[]; /** * Saves a JSON-Like object into a JSON file. * * @param path - The path of the JSON file. * @param content - The content to save. * @returns - True if operation has successfully worked. */ export declare function saveJSON(path: string, content: JSONLike): boolean; /** * Reads a JSON through its path. * * @remarks * Prefer using `import` or `require`. * @param path - The path to the JSON file. * @returns - The JSON. */ export declare function readJSON(path: string): JSONLike;