import * as ChefPlatformUserAccounts from "./entities/chef-platform-user-accounts/reducers"; import * as ChefPlatformExperience from "./entities/chef-platform-experience/reducers"; import * as ChefNodeManagement from "./entities/chef-node-management/reducers"; import * as ChefTenantManagement from "./entities/chef-tenant-management/anomalies/reducers"; import * as ChefPlatformInterMFEStates from "./entities/chef-platform-inter-mfe-states/reducers"; import * as ChefPlatformSystem from "./entities/chef-platform-system/reducers"; export interface NgrxSharedStateAtom { chefPlatformUserAccounts: ChefPlatformUserAccounts.EntityState; chefPlatformExperience: ChefPlatformExperience.EntityState; chefNodeManagement: ChefNodeManagement.EntityState; chefTenantManagement: ChefTenantManagement.EntityState; chefPlatformInterMFEStates: ChefPlatformInterMFEStates.EntityState; chefPlatformSystem: ChefPlatformSystem.EntityState; } export declare const defaultInitialState: NgrxSharedStateAtom; export declare const sharedStoreReducers: { chefPlatformUserAccounts: import("@ngrx/store").ActionReducer<{ self: ChefPlatformUserAccounts.SelfEntityState; identity: ChefPlatformUserAccounts.IdentityEntityState; }, import("@ngrx/store").Action>; chefPlatformExperience: import("@ngrx/store").ActionReducer<{ features: ChefPlatformExperience.FeatureEntityState; }, import("@ngrx/store").Action>; chefNodeManagement: import("@ngrx/store").ActionReducer<{ filter: ChefNodeManagement.NodesFiltersEntityState; list: ChefNodeManagement.NodesListsEntityState; node: ChefNodeManagement.NodeEntityState; }, import("@ngrx/store").Action>; chefTenantManagement: import("@ngrx/store").ActionReducer<{ license: ChefTenantManagement.LicenseEntityState; }, import("@ngrx/store").Action>; chefPlatformInterMFEStates: import("@ngrx/store").ActionReducer<{ shared: ChefPlatformInterMFEStates.SharedPropsEntityState; }, import("@ngrx/store").Action>; chefPlatformSystem: import("@ngrx/store").ActionReducer<{ tenant: ChefPlatformSystem.TenantEntityState; }, import("@ngrx/store").Action>; };