/**
 * SPDX-License-Identifier: Apache-2.0
 */
import { type ClusterRef, type ClusterRefs, type DeploymentName, type EmailAddress, type NamespaceNameAsString, type Version } from './remote/types.js';
export interface DeploymentStructure {
    clusters: ClusterRef[];
    namespace: NamespaceNameAsString;
}
export type Deployments = Record<DeploymentName, DeploymentStructure>;
export interface LocalConfigData {
    userEmailAddress: EmailAddress;
    deployments: Deployments;
    clusterRefs: ClusterRefs;
    soloVersion: Version;
}
