import type { Stats } from 'node:fs'; export declare function ensureDir(targetPath: string): Promise; export declare function emptyDir(targetPath: string): Promise; export declare function remove(targetPath: string): Promise; export declare function copy(source: string, destination: string): Promise; export declare function pathExists(targetPath: string): Promise; export declare function stat(targetPath: string): Promise; export declare function readJson(targetPath: string): Promise; export declare function writeJson(targetPath: string, data: unknown): Promise; export declare function readFile(targetPath: string): Promise; export declare function readBinaryFile(targetPath: string): Promise; export declare function writeFile(targetPath: string, contents: string): Promise;