import * as Parser from '@oclif/parser'; import AirtableCommand from '../helpers/airtable_command'; export default class RemoveRemote extends AirtableCommand { static description: string; static examples: string[]; static flags: { help: Parser.flags.IBooleanFlag; }; static args: Parser.args.Input; runAsync(): Promise; }