import { Command } from '@heroku-cli/command'; export default class Open extends Command { static args: { slug: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static urlOpener: (url: string) => Promise; run(): Promise; }