/** * Shared constants for bookings services * * @module Services/Constants */ /** Booking app definition ID */ export declare const BOOKING_APP_ID = "13d21c63-b5ec-5912-8397-c3a5ddb27a97"; /** Resource type ID for staff members */ export declare const STAFF_MEMBER_RESOURCE_TYPE_ID = "1cd44cf8-756f-41c3-bd90-3e2ffcaf1155"; export declare const ClientServiceIds: { readonly booking: "booking"; readonly bookingForm: "bookingForm"; readonly timeSlot: "time-slot"; readonly timeSlotList: "time-slot-list"; readonly service: "service"; readonly serviceList: "service-list"; readonly payment: "payment"; readonly staffMemberList: "staff-member-list"; readonly locationList: "location-list"; }; export type ClientServiceId = (typeof ClientServiceIds)[keyof typeof ClientServiceIds];