import { flags as commandFlags } from '@oclif/command'; import AirtableCommand from '../helpers/airtable_command'; export default class Release 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; comment: commandFlags.IOptionFlag; 'upload-source-maps-to-sentry': import("@oclif/parser/lib/flags").IBooleanFlag; 'skip-upload': import("@oclif/parser/lib/flags").IBooleanFlag; }; _uploadSourceMapToSentryAsync(frontendBundlePath: string, frontendBundleSourceMapPath: string, s3BundleKey: string, gitHash: string, bundleCdn: string): Promise; runAsync(): Promise; finallyAsync(): Promise; }