import { Path } from "../../types/index.js"; /** * Reads and parses JSON file * * make sure to specify what type the file contains as a generic! */ export declare const readJsonFile: (filePath: Path | undefined) => Promise; /** * Reads and parses JSON file * * make sure to specify what type the file contains as a generic! */ export declare const readJsonFileSync: (filePath: Path) => T | null; //# sourceMappingURL=readJsonFile.d.ts.map