/// import * as fs from 'fs-extra'; export declare function touch(p: string): Promise; export declare function ls(dir: string): Promise<{ path: string; stat: fs.Stats; }[]>; export declare function wait(ms: number, unref?: boolean): Promise;