import type { Dump } from "../types"; type readJson = (fileName: string) => Promise; type readJsonGz = (fileName: string) => Promise; type writeJson = (fileName: string, dump: Dump) => Promise; type writeJsonGz = (fileName: string, dump: Dump) => Promise; export declare const readJson: readJson; export declare const readJsonGz: readJsonGz; export declare const writeJson: writeJson; export declare const writeJsonGz: writeJsonGz; declare const _default: { readJson: readJson; readJsonGz: readJsonGz; writeJson: writeJson; writeJsonGz: writeJsonGz; }; export default _default;