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