import { ChefNodeManagementNode } from "@progress-chef/platform-code-gen-store-services"; import { EntityAdapter, EntityState } from "@ngrx/entity"; import { SharedNgrxKeys } from "../../../shared-ngrx-constants"; export interface NodeDetailsState extends EntityState { [SharedNgrxKeys.GET_NODE_DETAILS_STATUS]: string; } export interface NodeEntityState { [SharedNgrxKeys.NODE_DETAILS]: NodeDetailsState; } export declare const nodeDetailsEntityAdapter: EntityAdapter; export declare const NodesInitialState: NodeDetailsState; export declare const NodeInitialState: NodeEntityState; export declare function nodeEntityReducer(state: NodeEntityState | undefined, action: any): NodeEntityState;