/** * Reads and parses JSON data from a file asynchronously. * @template T * @param {string} filename - The path to the JSON file to read. * @param {string} [cwd] - The current working directory to resolve the filename against. * @returns {Promise} A promise that resolves with the parsed JSON data. */ export declare function readJson(filename: string, cwd?: string): Promise;