import "./fs-safe-defaults.js"; import { tryReadJsonSync, tryReadJson, writeJsonSync } from "@kodelyth/fs-safe/json"; export { tryReadJson, tryReadJsonSync, writeJsonSync }; export declare const readJsonFile: typeof tryReadJson; export declare function saveJsonFile(pathname: string, data: unknown): void; export declare function loadJsonFile(pathname: string): T | undefined;