import { Command, flags } from '@heroku-cli/command'; import * as Heroku from '@heroku-cli/schema'; export default class DomainsAdd extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; app: flags.IOptionFlag; cert: flags.IOptionFlag; json: import("@oclif/parser/lib/flags").IBooleanFlag; wait: import("@oclif/parser/lib/flags").IBooleanFlag; remote: flags.IOptionFlag; }; static args: { name: string; required: boolean; }[]; certSelect: (certs: Heroku.SniEndpoint[]) => Promise; run(): Promise; }