import { SharedNgrxKeys } from "../../../shared-ngrx-constants"; import { BaseCreateState } from "../../../shared-store.models"; export interface FeatureFlagsState extends BaseCreateState { [SharedNgrxKeys.DETAILS]: object; } export interface FeatureEntityState { [SharedNgrxKeys.FEATURE_FLAGS]: FeatureFlagsState; } export declare const FeatureInitialState: FeatureEntityState; export declare function featureEntityReducer(state: FeatureEntityState | undefined, action: any): FeatureEntityState;