import type { JSONObject } from '../interfaces.js'; export declare function pathExists(path: string): boolean; export declare function readDir(path: string): string[]; export declare function readJSON(path: string): JSONObject | undefined; export declare function writeJSON(path: string, object: any): void; export declare function createDir(path: string): void; export declare function createTempDir(name: string): string; export declare function copyRecursively(from: string, to: string): void; export declare function removeRecursively(path: string): void; export declare function getHomeDirectory(): string; export declare function getCurrentDirectory(): string;