import { Command, flags } from '@heroku-cli/command'; export default class RunDetached extends Command { static description: string; static examples: string[]; static strict: boolean; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; env: flags.IOptionFlag; size: flags.IOptionFlag; tail: import("@oclif/parser/lib/flags").IBooleanFlag; type: flags.IOptionFlag; }; run(): Promise; }