import { FeatureEntityState } from "./feature.reducer"; import { SharedNgrxKeys } from "../../../shared-ngrx-constants"; export * from "./feature.reducer"; export type EntityState = { [SharedNgrxKeys.FEATURES]: FeatureEntityState; }; export declare const InitialState: EntityState; export declare const entityReducer: import("@ngrx/store").ActionReducer<{ features: FeatureEntityState; }, import("@ngrx/store").Action>;