/** Supported types of a booking creator. */ export declare const BookingCreatorDetailsCreatorType: { readonly TeamMember: "TEAM_MEMBER"; readonly Customer: "CUSTOMER"; }; export type BookingCreatorDetailsCreatorType = (typeof BookingCreatorDetailsCreatorType)[keyof typeof BookingCreatorDetailsCreatorType];