import { StoreBase } from "../FluxCommon/Store"; import { V1PodList } from "@kubernetes/client-node"; export interface IPodsStoreState { podsList?: V1PodList; isLoading?: boolean; podListByLabel: { [label: string]: V1PodList; }; } export declare class PodsStore extends StoreBase { static getKey(): string; initialize(instanceId?: string): void; disposeInternal(): void; getState(): IPodsStoreState; private _setPodsList; private _setPodsListByLabel; private _state; private _actions; }