import { ExtendedBaseCommand } from "../../lib/basecommands/ExtendedBaseCommand.js"; export default class Ssh extends ExtendedBaseCommand { static summary: string; static description: string; static args: { "project-id": import("@oclif/core/interfaces").Arg; }; static flags: { "ssh-user": import("@oclif/core/interfaces").OptionFlag; "ssh-identity-file": import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }