import { V1Pod, V1ServiceList } from "@kubernetes/client-node"; import { StoreBase } from "../FluxCommon/Store"; export interface IServicesStoreState { serviceList?: V1ServiceList; podsList?: V1Pod[]; isLoading?: boolean; arePodsLoading?: boolean; } export declare class ServicesStore extends StoreBase { static getKey(): string; initialize(instanceId?: string): void; disposeInternal(): void; getState(): IServicesStoreState; getServicesSize(): number; private _servicesFetched; private _setAssociatedPodsList; private _state; private _servicesActions; private _podsActions; }