import { ActionsHubBase, Action } from "../FluxCommon/Actions"; import { V1PodList } from "@kubernetes/client-node"; export interface IPodsPayload { podsList: V1PodList; isLoading: boolean; } export interface IPodListWithLabel extends IPodsPayload { labelSelector: string; } export declare class PodsActions extends ActionsHubBase { static getKey(): string; initialize(): void; readonly podsFetched: Action; readonly podsFetchedByLabel: Action; private _podsFetched; private _podsFetchedByLabel; }