// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
#ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_PRICE_TRACKING_PROMO_PRICE_TRACKING_PROMO_VIEW_H_
#define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_PRICE_TRACKING_PROMO_PRICE_TRACKING_PROMO_VIEW_H_
#import <UIKit/UIKit.h>
@protocol PriceTrackingPromoCommands;
@class PriceTrackingPromoItem;
// View for the Price Tracking Promo module.
@interface PriceTrackingPromoModuleView : UIView
// Configures this view with `config`.
- (void)configureView:(PriceTrackingPromoItem*)config;
// Command handler for user events.
@property(nonatomic, weak) id<PriceTrackingPromoCommands> commandHandler;
@end
#endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_PRICE_TRACKING_PROMO_PRICE_TRACKING_PROMO_VIEW_H_