import { V1DaemonSetList, V1DeploymentList, V1PodList, V1ReplicaSetList, V1StatefulSetList } from "@kubernetes/client-node"; import { Action, ActionsHubBase } from "../FluxCommon/Actions"; export declare class WorkloadsActions extends ActionsHubBase { static getKey(): string; initialize(): void; readonly deploymentsFetched: Action; readonly replicaSetsFetched: Action; readonly daemonSetsFetched: Action; readonly statefulSetsFetched: Action; readonly podsFetched: Action; private _deploymentsFetched; private _replicaSetsFetched; private _daemonSetsFetched; private _statefulSetsFetched; private _podsFetched; }