/** Indicates whether the price of a CatalogItemVariation should be entered manually at the time of sale. */ export declare const CatalogPricingType: { readonly FixedPricing: "FIXED_PRICING"; readonly VariablePricing: "VARIABLE_PRICING"; }; export type CatalogPricingType = (typeof CatalogPricingType)[keyof typeof CatalogPricingType];