import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; import PortMapping from "../../lib/units/PortMapping.js"; export declare class PortForward extends ExecRenderBaseCommand> { static summary: string; static description: string; static flags: { "project-id": import("@oclif/core/interfaces").OptionFlag; "ssh-user": import("@oclif/core/interfaces").OptionFlag; "ssh-identity-file": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; static args: { "container-id": import("@oclif/core/interfaces").Arg>; port: import("@oclif/core/interfaces").Arg>; }; protected exec(): Promise>; private getPortMappings; protected render(): ReactNode; }