import { flags as commandFlags } from '@oclif/command'; import AirtableCommand from '../helpers/airtable_command'; export default class Submit extends AirtableCommand { private _task?; private _teardownAction?; /** * 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; remote: commandFlags.IOptionFlag; }; runAsync(): Promise; finallyAsync(): Promise; }