interface Cluster { id: string; } export interface AddClustersToClusterGroup { prodClusters: Cluster[]; nonProdClusters: Cluster[]; } export {};