/** * Read a JSON file. * {@link https://kythuen.github.io/ephemeras/fs/readJSON | View Details} * * @param path JSON file path. * @returns JSON file data. * * @example * await readJSON('abc/ab.json') */ declare function readJSON(path: string): Promise>; export { readJSON };