import { Command, flags } from '@heroku-cli/command'; export default class RunRake extends Command { static hidden: boolean; static strict: boolean; static flags: { app: flags.IOptionFlag; remote: flags.IOptionFlag; size: flags.IOptionFlag; 'exit-code': import("@oclif/parser/lib/flags").IBooleanFlag; env: flags.IOptionFlag; 'no-tty': import("@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; }