import { flags as commandFlags } from '@oclif/command'; import * as Parser from '@oclif/parser'; import AirtableCommand from '../helpers/airtable_command'; export default class AddRemote extends AirtableCommand { static description: string; static examples: string[]; static flags: { help: Parser.flags.IBooleanFlag; server: commandFlags.IOptionFlag; 'api-key-name': commandFlags.IOptionFlag; }; static args: Parser.args.Input; runAsync(): Promise; }