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