/** * Possible types of CatalogObjects returned from the catalog, each * containing type-specific properties in the `*_data` field corresponding to the specified object type. */ export declare const CatalogObjectType: { readonly Item: "ITEM"; readonly Image: "IMAGE"; readonly Category: "CATEGORY"; readonly ItemVariation: "ITEM_VARIATION"; readonly Tax: "TAX"; readonly Discount: "DISCOUNT"; readonly ModifierList: "MODIFIER_LIST"; readonly Modifier: "MODIFIER"; readonly PricingRule: "PRICING_RULE"; readonly ProductSet: "PRODUCT_SET"; readonly TimePeriod: "TIME_PERIOD"; readonly MeasurementUnit: "MEASUREMENT_UNIT"; readonly SubscriptionPlanVariation: "SUBSCRIPTION_PLAN_VARIATION"; readonly ItemOption: "ITEM_OPTION"; readonly ItemOptionVal: "ITEM_OPTION_VAL"; readonly CustomAttributeDefinition: "CUSTOM_ATTRIBUTE_DEFINITION"; readonly QuickAmountsSettings: "QUICK_AMOUNTS_SETTINGS"; readonly SubscriptionPlan: "SUBSCRIPTION_PLAN"; readonly AvailabilityPeriod: "AVAILABILITY_PERIOD"; }; export type CatalogObjectType = (typeof CatalogObjectType)[keyof typeof CatalogObjectType];