import { Command, flags } from '@heroku-cli/command'; export default class DomainsRemove extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; app: flags.IOptionFlag; remote: flags.IOptionFlag; }; static args: { name: string; required: boolean; }[]; run(): Promise; }