export declare const commandDeletePods: import("../../../core").CommandDef<{
  readonly envComponent: {
    readonly type: "string";
    readonly message: "environment:component";
    readonly positional: true;
    readonly choices: () => Promise<string[]>;
  };
  readonly selectedPodNames: {
    readonly type: "string[]";
    readonly message: "Which pods to delete / restart ? 🤔  ";
    readonly choices: (ctx: any) => Promise<string[]>;
  };
}>;