/// /// import * as fs from 'fs'; import * as Bluebird from 'bluebird'; export interface AsyncFsSubset { lstat: (path: string | Buffer) => Bluebird; readdir: (path: string | Buffer) => Bluebird; readFile: (filename: string) => Bluebird; } export declare const fsAsync: AsyncFsSubset;