declare module 'json-future' { import * as loadJsonFile from 'load-json-file'; type JSONPrimitive = number | boolean | string | null; type JSONValue = JSONPrimitive | JSONArray | JSONObject; interface JSONObject { [k: string]: JSONValue } type JSONArray = JSONValue[]; import * as writeJsonFile from 'write-json-file'; export function stringify( data: any, replacer?: any, space?: any ): string; export function stringifyAsync( data: any ): string; export function parse( input: string, filepath?: string ): any; export function parseAsync( input: string, filepath?: string ): any; export function load( filePath: string, options?: loadJsonFile.Options ): Promise; export function loadAsync( filePath: string, options?: loadJsonFile.Options ): Promise; export function save( filePath: string, data: unknown, options?: writeJsonFile.Options ): void; export function saveAsync( filePath: string, data: unknown, options?: writeJsonFile.Options ): Promise; }