import { createFacility, deleteFacility, getFacilityById, listFacilities, updateFacility } from "./service-core.js"; import { createAddress, createContactPoint, createFacilityContact, deleteAddress, deleteContactPoint, deleteFacilityContact, listAddresses, listContactPoints, listFacilityContacts, updateAddress, updateContactPoint, updateFacilityContact } from "./service-identity.js"; import { createFacilityFeature, createFacilityOperationSchedule, deleteFacilityFeature, deleteFacilityOperationSchedule, listFacilityFeatures, listFacilityOperationSchedules, updateFacilityFeature, updateFacilityOperationSchedule } from "./service-operations.js"; import { createProperty, createPropertyGroup, createPropertyGroupMember, deleteProperty, deletePropertyGroup, deletePropertyGroupMember, getPropertyById, getPropertyGroupById, getPropertyGroupMemberById, listProperties, listPropertyGroupMembers, listPropertyGroups, updateProperty, updatePropertyGroup, updatePropertyGroupMember } from "./service-properties.js"; export declare const facilitiesService: { listFacilities: typeof listFacilities; getFacilityById: typeof getFacilityById; createFacility: typeof createFacility; updateFacility: typeof updateFacility; deleteFacility: typeof deleteFacility; listContactPoints: typeof listContactPoints; createContactPoint: typeof createContactPoint; updateContactPoint: typeof updateContactPoint; deleteContactPoint: typeof deleteContactPoint; listAddresses: typeof listAddresses; createAddress: typeof createAddress; updateAddress: typeof updateAddress; deleteAddress: typeof deleteAddress; listFacilityContacts: typeof listFacilityContacts; createFacilityContact: typeof createFacilityContact; updateFacilityContact: typeof updateFacilityContact; deleteFacilityContact: typeof deleteFacilityContact; listFacilityFeatures: typeof listFacilityFeatures; createFacilityFeature: typeof createFacilityFeature; updateFacilityFeature: typeof updateFacilityFeature; deleteFacilityFeature: typeof deleteFacilityFeature; listFacilityOperationSchedules: typeof listFacilityOperationSchedules; createFacilityOperationSchedule: typeof createFacilityOperationSchedule; updateFacilityOperationSchedule: typeof updateFacilityOperationSchedule; deleteFacilityOperationSchedule: typeof deleteFacilityOperationSchedule; listProperties: typeof listProperties; getPropertyById: typeof getPropertyById; createProperty: typeof createProperty; updateProperty: typeof updateProperty; deleteProperty: typeof deleteProperty; listPropertyGroups: typeof listPropertyGroups; getPropertyGroupById: typeof getPropertyGroupById; createPropertyGroup: typeof createPropertyGroup; updatePropertyGroup: typeof updatePropertyGroup; deletePropertyGroup: typeof deletePropertyGroup; listPropertyGroupMembers: typeof listPropertyGroupMembers; getPropertyGroupMemberById: typeof getPropertyGroupMemberById; createPropertyGroupMember: typeof createPropertyGroupMember; updatePropertyGroupMember: typeof updatePropertyGroupMember; deletePropertyGroupMember: typeof deletePropertyGroupMember; };