/// import fs from 'fs'; export declare const copyFileAsync: typeof fs.copyFile.__promisify__; export declare const writeFileAsync: typeof fs.writeFile.__promisify__; export declare const readFileAsync: typeof fs.readFile.__promisify__; export declare const mkdirpAsync: (arg1: string) => Promise; export declare function runCommand(cmd: string): Promise<{}>; export declare function writeScript(pkg: { scripts: any; }, key: string, script: string): void; export declare function toolsPath(filePath: string): string; export declare function runPath(filePath: string): string; export declare function rootPath(filePath: string): string; export declare function readConfigSync(): { paths: { dist: string; static: string; }; typescript: string[]; webpack: string[]; }; export declare function evalJs(path: string): any;