export declare const commandPortForward: import("../../core").CommandDef<{
  readonly envComponent: {
    readonly type: "string";
    readonly message: "environment:component";
    readonly positional: true;
    readonly choices: () => Promise<string[]>;
  };
  readonly podName: {
    readonly type: "string";
    readonly message: "Which pod? 🤔";
    readonly choices: (ctx: any) => Promise<string[]>;
  };
  readonly localPort: {
    readonly type: "number";
    readonly message: "Local port: ";
  };
  readonly remotePort: {
    readonly type: "number";
    readonly message: "Remote port: ";
  };
  readonly mr: {
    readonly type: "number";
    readonly message: "Which mr 🤔 ";
  };
}>;