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