#ifndef IOS_CHROME_BROWSER_COMPOSEBOX_UI_COMPOSEBOX_INPUT_ITEM_CELL_H_
#define IOS_CHROME_BROWSER_COMPOSEBOX_UI_COMPOSEBOX_INPUT_ITEM_CELL_H_
#import <UIKit/UIKit.h>
#import "ios/chrome/browser/composebox/public/composebox_theme.h"
#import "ios/chrome/browser/composebox/ui/composebox_input_item.h"
@class ComposeboxInputItemCell;
@protocol ComposeboxInputItemCellDelegate <NSObject>
- (void)composeboxInputItemCellDidTapCloseButton:(ComposeboxInputItemCell*)cell;
@end
@interface ComposeboxInputItemCell : UICollectionViewCell
@property(nonatomic, weak) id<ComposeboxInputItemCellDelegate> delegate;
- (void)configureWithItem:(ComposeboxInputItem*)item
theme:(ComposeboxTheme*)theme;
@end
#endif