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