import { getAvailabilityAggregates } from "./service-aggregates.js"; import { assignTravelerAllocation, createAllocationResource, deleteAllocationResource, getSlotAllocationManifest, listAllocationResources, pairSharingGroup, updateAllocationResource, updateTravelerSharingGroup } from "./service-allocation.js"; import { createCloseout, createRule, createSlot, createStartTime, deleteCloseout, deleteRule, deleteSlot, deleteStartTime, getCloseoutById, getRuleById, getSlotById, getStartTimeById, listCloseouts, listRules, listSlots, listStartTimes, updateCloseout, updateRule, updateSlot, updateStartTime } from "./service-core.js"; import { getAvailabilityOverview } from "./service-overview.js"; import { createCustomPickupArea, createLocationPickupTime, createMeetingConfig, createPickupGroup, createPickupLocation, createPickupPoint, createSlotPickup, deleteCustomPickupArea, deleteLocationPickupTime, deleteMeetingConfig, deletePickupGroup, deletePickupLocation, deletePickupPoint, deleteSlotPickup, getCustomPickupAreaById, getLocationPickupTimeById, getMeetingConfigById, getPickupGroupById, getPickupLocationById, getPickupPointById, getSlotPickupById, listCustomPickupAreas, listLocationPickupTimes, listMeetingConfigs, listPickupGroups, listPickupLocations, listPickupPoints, listSlotPickups, updateCustomPickupArea, updateLocationPickupTime, updateMeetingConfig, updatePickupGroup, updatePickupLocation, updatePickupPoint, updateSlotPickup } from "./service-pickups.js"; import { getSlotUnitAvailability } from "./service-unit-availability.js"; export declare const availabilityService: { getSlotAllocationManifest: typeof getSlotAllocationManifest; listAllocationResources: typeof listAllocationResources; createAllocationResource: typeof createAllocationResource; updateAllocationResource: typeof updateAllocationResource; deleteAllocationResource: typeof deleteAllocationResource; assignTravelerAllocation: typeof assignTravelerAllocation; updateTravelerSharingGroup: typeof updateTravelerSharingGroup; pairSharingGroup: typeof pairSharingGroup; getSlotUnitAvailability: typeof getSlotUnitAvailability; getAvailabilityAggregates: typeof getAvailabilityAggregates; getAvailabilityOverview: typeof getAvailabilityOverview; listRules: typeof listRules; getRuleById: typeof getRuleById; createRule: typeof createRule; updateRule: typeof updateRule; deleteRule: typeof deleteRule; listStartTimes: typeof listStartTimes; getStartTimeById: typeof getStartTimeById; createStartTime: typeof createStartTime; updateStartTime: typeof updateStartTime; deleteStartTime: typeof deleteStartTime; listSlots: typeof listSlots; getSlotById: typeof getSlotById; createSlot: typeof createSlot; updateSlot: typeof updateSlot; deleteSlot: typeof deleteSlot; listCloseouts: typeof listCloseouts; getCloseoutById: typeof getCloseoutById; createCloseout: typeof createCloseout; updateCloseout: typeof updateCloseout; deleteCloseout: typeof deleteCloseout; listPickupPoints: typeof listPickupPoints; getPickupPointById: typeof getPickupPointById; createPickupPoint: typeof createPickupPoint; updatePickupPoint: typeof updatePickupPoint; deletePickupPoint: typeof deletePickupPoint; listSlotPickups: typeof listSlotPickups; getSlotPickupById: typeof getSlotPickupById; createSlotPickup: typeof createSlotPickup; updateSlotPickup: typeof updateSlotPickup; deleteSlotPickup: typeof deleteSlotPickup; listMeetingConfigs: typeof listMeetingConfigs; getMeetingConfigById: typeof getMeetingConfigById; createMeetingConfig: typeof createMeetingConfig; updateMeetingConfig: typeof updateMeetingConfig; deleteMeetingConfig: typeof deleteMeetingConfig; listPickupGroups: typeof listPickupGroups; getPickupGroupById: typeof getPickupGroupById; createPickupGroup: typeof createPickupGroup; updatePickupGroup: typeof updatePickupGroup; deletePickupGroup: typeof deletePickupGroup; listPickupLocations: typeof listPickupLocations; getPickupLocationById: typeof getPickupLocationById; createPickupLocation: typeof createPickupLocation; updatePickupLocation: typeof updatePickupLocation; deletePickupLocation: typeof deletePickupLocation; listLocationPickupTimes: typeof listLocationPickupTimes; getLocationPickupTimeById: typeof getLocationPickupTimeById; createLocationPickupTime: typeof createLocationPickupTime; updateLocationPickupTime: typeof updateLocationPickupTime; deleteLocationPickupTime: typeof deleteLocationPickupTime; listCustomPickupAreas: typeof listCustomPickupAreas; getCustomPickupAreaById: typeof getCustomPickupAreaById; createCustomPickupArea: typeof createCustomPickupArea; updateCustomPickupArea: typeof updateCustomPickupArea; deleteCustomPickupArea: typeof deleteCustomPickupArea; };