export default class BaseConsoleApplication { protected env: string; protected isProduction: boolean; protected die(error: string): void; protected getArgs(): any; protected saveToFile(name: string, data: string): Promise; protected readFile(name: string): Promise; protected readDir(dir: string): Promise; }