import { SharedNgrxKeys } from "../../../shared-ngrx-constants"; import { SharedPropsEntityState } from "./inter-mfe-state.reducer"; export * from "./inter-mfe-state.reducer"; export type EntityState = { [SharedNgrxKeys.SHARED]: SharedPropsEntityState; }; export declare const InitialState: EntityState; export declare const entityReducer: import("@ngrx/store").ActionReducer<{ shared: SharedPropsEntityState; }, import("@ngrx/store").Action>;