/** * Represents a Rancher-managed cluster with details like ID and name. */ export interface RancherClusterItem { clusterItems?: Array<{ id?: string; name?: string; }>; clusters?: string[]; }