export interface ExecOption { uid?: string; max?: number; spinSleepTime?: number; killTree?: boolean; pidFile?: string; watch?: boolean; watchIgnoreDotFiles?: boolean; watchIgnorePatterns?: string[]; watchDirectory?: string; env?: { [name: string]: string; }; cwd?: string; stopMinTimeout?: number; stopMaxTimeout?: number; } export declare enum ProcessEvent { TryExit = "TryExit", WaitExit = "WaitExit", CanExit = "CanExit" }