export interface KubeNamespace {
    apiVersion?: string;
    kind?: "Namespace";
    metadata?: {
        name?: string;
        namespace?: string;
        labels: {
            [key: string]: string;
        };
        creationTimestamp?: string;
    };
    spec?: {
        finalizers?: string[];
    };
    status?: {
        phase?: string;
    };
    clusterSlug?: string;
    /**
     * Cluster's short name
     * @deprecated
     */
    clusterShortName?: string;
    /**
     * Cluster ID
     */
    cluster?: string;
    /**
     * Workspace ID
     */
    workspace?: string;
}
//# sourceMappingURL=KubeNamespace.d.ts.map