export interface SelectedClusterType {
  name: string;
  displayName: string;
  provider: string;
  location: string;
}

export interface SwitchCluster {
  name: string;
  displayName: string;
  provider: string;
  location?: string;
  status?: string;
}
