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