import type { HermioneConfig } from "./types/hermioneConfig"; export declare const exists: (path: string) => Promise; export declare const ensureDirectory: (path: string) => Promise; export declare const writeHermioneConfig: (dirPath: string, hermioneConfig: HermioneConfig) => Promise; export declare const writeTest: (dirPath: string, testName: string, testContent: string) => Promise; export declare const writeJson: (filePath: string, obj: Record) => Promise; declare const _default: { exists: (path: string) => Promise; ensureDirectory: (path: string) => Promise; writeHermioneConfig: (dirPath: string, hermioneConfig: HermioneConfig) => Promise; writeTest: (dirPath: string, testName: string, testContent: string) => Promise; writeJson: (filePath: string, obj: Record) => Promise; }; export default _default;