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