import { Command } from '@heroku-cli/command'; export default class ConsumerGroupsCreate extends Command { static args: { consumer_group: import("@oclif/core/interfaces").Arg>; cluster: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { app: import("@oclif/core/interfaces").OptionFlag; remote: import("@oclif/core/interfaces").OptionFlag; }; static topic: string; run(): Promise; }