/// import Command from '@cli-engine/command'; import * as readPkgUp from 'read-pkg-up'; export default abstract class UtilCommand extends Command { pkg: readPkgUp.Package; root: string; version: any; init(opts: any): Promise; protected validate(): Promise; } export { flags } from '@cli-engine/command';