import type { JSONObject } from '../interfaces'; export declare function pathExists(path: string): boolean; 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 getHomeDirectory(): string; export declare function copy(from: string, to: string): void; export declare function removeRecursively(path: string): void;