import type { JsonValue } from "type-fest"; import type { JsonReviver, ReadJsonOptions } from "../types.d.ts"; declare function readJson(path: URL | string, options?: ReadJsonOptions): Promise; declare function readJson(path: URL | string, reviver: JsonReviver, options?: ReadJsonOptions): Promise; export default readJson;