import { type DeploymentPhase } from '../deployment-phase.js';
import { type ClusterReferenceName, type ComponentId, type NamespaceNameAsString, type PortForwardConfig } from '../../../../../types/index.js';
export declare class ComponentStateMetadataSchema {
    id: ComponentId;
    namespace: NamespaceNameAsString;
    cluster: ClusterReferenceName;
    phase: DeploymentPhase;
    portForwardConfigs: PortForwardConfig[];
    constructor(id?: ComponentId, namespace?: NamespaceNameAsString, cluster?: ClusterReferenceName, phase?: DeploymentPhase, portForwardConfigs?: PortForwardConfig[]);
}
