import { flags as commandFlags } from '@oclif/command'; import AirtableCommand from '../helpers/airtable_command'; export default class Run extends AirtableCommand { private _task?; private _devServer?; /** * A file system path describing the location where a temporary directory * should be created to store the generated file(s). */ private _appTemporaryPath?; static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; port: import("@oclif/parser/lib/flags").IOptionFlag; remote: commandFlags.IOptionFlag; 'sdk-repo': commandFlags.IOptionFlag; }; runAsync(): Promise; finallyAsync(): Promise; }