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<void>;
    private watchTestSrc;
    private watchDist;
}
export {};
