import { PromotionRuleOperatorValues } from "@medusajs/framework/types"; export interface CreatePromotionRuleDTO { description?: string | null; attribute: string; operator: PromotionRuleOperatorValues; } export interface UpdatePromotionRuleDTO { id: string; } export declare enum ApplicationMethodRuleTypes { TARGET_RULES = "target_rules", BUY_RULES = "buy_rules" } //# sourceMappingURL=promotion-rule.d.ts.map