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