/** Supported sources a booking was created from. */ export declare const BookingBookingSource: { readonly FirstPartyMerchant: "FIRST_PARTY_MERCHANT"; readonly FirstPartyBuyer: "FIRST_PARTY_BUYER"; readonly ThirdPartyBuyer: "THIRD_PARTY_BUYER"; readonly Api: "API"; }; export type BookingBookingSource = (typeof BookingBookingSource)[keyof typeof BookingBookingSource];