import { flags as commandFlags } from '@oclif/command'; import * as Parser from '@oclif/parser'; import AirtableCommand from '../helpers/airtable_command'; export default class Init extends AirtableCommand { private _teardownAction; static description: string; static examples: string[]; static flags: { help: Parser.flags.IBooleanFlag; template: commandFlags.IOptionFlag; }; static args: Parser.args.Input; runAsync(): Promise; catchAsync(err: Error): Promise; }