import { readFile, writeFile, unlink, copyFile, mkdir, stat, readdir } from 'node:fs/promises'; export declare const readFileAsync: typeof readFile; export declare const writeFileAsync: typeof writeFile; export declare const unlinkAsync: typeof unlink; export declare const copyFileAsync: typeof copyFile; export declare const mkdirAsync: typeof mkdir; export declare const statAsync: typeof stat; export declare const readdirAsync: typeof readdir; export declare function fileExists(path: string): Promise; export declare function dirExistsAsync(path: string): Promise; export declare const CLI_VERSION: string;