import { EnterprisePropertySet, GuidValue } from "../models"; export declare class EnterprisePropertySetService { private httpClient; getEnterprisePropertySets: () => Promise>; getEnterprisePropertySetById: (enterprisePropertySetId: GuidValue) => Promise; createEnterprisePropertySet: (enterprisePropertySet: EnterprisePropertySet) => Promise; updateEnterprisePropertySet: (enterprisePropertySet: EnterprisePropertySet) => Promise; removeEnterprisePropertySet: (enterprisePropertySetId: GuidValue) => Promise; terminateEnterprisePropertySet: (enterprisePropertySetId: GuidValue) => Promise; restoreEnterprisePropertySet: (enterprisePropertySetId: GuidValue) => Promise; }