import type { ContainerReflection } from "typedoc"; import type { DateFnsDocs } from "./types.js"; /** * Reads and parses TypeDoc JSON and extracts reflections. * @param jsonPath - the path to the docs JSON * @returns parsed function reflections */ export declare function readRefsFromJSON(config: DateFnsDocs.Config, configDir: string): Promise; /** * Reads and parses TypeDoc container reflection from a JSON file. * @param jsonPath - the path to the docs JSON * @returns parsed container reflection */ export declare function readDocsJSON(jsonPath: string): Promise;