import { KubernetesResource } from "../model/kubernetesresource.model"; import { NamespacedResourceService } from "../service/namespaced.resource.service"; import { NamespaceScope } from "../service/namespace.scope"; import { KubernetesResourceStore } from "./kuberentesresource.store"; export declare abstract class NamespacedResourceStore, R extends NamespacedResourceService> extends KubernetesResourceStore { namespaceScope: NamespaceScope; private namespaceSubscription; constructor(service: any, initialList: any, initialCurrent: any, namespaceScope: NamespaceScope, type: any); readonly namespace: string; }