import { EnterprisePropertySet, GuidValue } from "../models"; import { Store } from "./Store"; import { EnterprisePropertySetService } from "../services/EnterprisePropertySetService"; export declare class EnterprisePropertySetStore extends Store { enterprisePropertySetService: EnterprisePropertySetService; private multilingualTextsStore; private ensuredLoadSetsPromise; private enterprisePropertySets; getters: { enterprisePropertySets: () => EnterprisePropertySet[]; enterprisePropertySetsGroupByCategory: () => { [categoryId: string]: EnterprisePropertySet[]; }; }; mutations: { updateEnterprisePropertySets: import("./Store").StoreMutation<() => void, () => import("@omnia/fx-models").IMessageBusSubscriptionHandler>; }; actions: { ensureLoadAllSets: import("./Store").StoreAction void, (result: void) => void, (failureReason: any) => void, () => Promise>; addEnterprisePropertySet: import("./Store").StoreAction void, (result: any, enterprisePropertySet: EnterprisePropertySet) => void, (failureReason: any, enterprisePropertySet: EnterprisePropertySet) => void, (enterprisePropertySet: EnterprisePropertySet) => Promise>; updateEnterprisePropertySet: import("./Store").StoreAction void, (result: any, enterprisePropertySet: EnterprisePropertySet) => void, (failureReason: any, enterprisePropertySet: EnterprisePropertySet) => void, (enterprisePropertySet: EnterprisePropertySet) => Promise>; removeEnterprisePropertySet: import("./Store").StoreAction void, (result: any, enterprisePropertySet: EnterprisePropertySet) => void, (failureReason: any, enterprisePropertySet: EnterprisePropertySet) => void, (enterprisePropertySet: EnterprisePropertySet) => Promise>; terminateEnterprisePropertySet: import("./Store").StoreAction void, (result: any, enterprisePropertySetId: GuidValue) => void, (failureReason: any, enterprisePropertySetId: GuidValue) => void, (enterprisePropertySetId: GuidValue) => Promise>; restoreEnterprisePropertySet: import("./Store").StoreAction void, (result: any, enterprisePropertyId: GuidValue) => void, (failureReason: any, enterprisePropertyId: GuidValue) => void, (enterprisePropertyId: GuidValue) => Promise>; }; private addOrUpdateSets; onActivated(): void; onDisposing(): void; }