import { SharedNgrxKeys } from "../../../../shared-ngrx-constants"; export interface LicenseEntityState { [SharedNgrxKeys.LICENSE_IDS]: { [SharedNgrxKeys.GET_LICENSE_IDS_STATUS]: string; [SharedNgrxKeys.DETAILS]: string[]; }; [SharedNgrxKeys.CLIENT_DETAILS]: { [SharedNgrxKeys.GET_CLIENT_DETAILS_STATUS]: string; [SharedNgrxKeys.DETAILS]: object; }; } export declare const LicenseInitialState: LicenseEntityState; export declare function licenseEntityReducer(state: LicenseEntityState | undefined, action: any): LicenseEntityState;