import { type HelmStrategy } from './helm.strategy'; export abstract class HelmStrategyFactory { protected abstract create(type: string): T; }