export declare const lintUtil: { lintFixProj(): Promise; /** * 对ts工程进行lint检查 */ lintProj(opts?: { blacklintDirs?: string[]; testDir?: string; }): Promise; /** * lint for mocha ts * @param testDir */ testDirLint(testDir?: string): Promise; blackLint(dirs: string[], words?: string[]): Promise; eslint(): boolean; tscLint(): boolean; };