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<any>;
    protected readFile(name: string): Promise<string>;
    protected readDir(dir: string): Promise<string[]>;
}
