/** * Indicates which products matched by a CatalogPricingRule * will be excluded if the pricing rule uses an exclude set. */ export declare const ExcludeStrategy: { readonly LeastExpensive: "LEAST_EXPENSIVE"; readonly MostExpensive: "MOST_EXPENSIVE"; readonly MostExpensiveLowestValue: "MOST_EXPENSIVE_LOWEST_VALUE"; }; export type ExcludeStrategy = (typeof ExcludeStrategy)[keyof typeof ExcludeStrategy];