import { Command } from "../command"; interface iFileWatcher { contentMd5: string | null; fileWait: any; } export default class About extends Command { commandString: string; files: { [filename: string]: iFileWatcher; }; isHidden: boolean; private fsWait; private changeCount; action(): Promise; private watchTestSrc; private watchDist; } export {};