#ifndef IOS_CHROME_BROWSER_COMPOSEBOX_UI_COMPOSEBOX_PRESENT_ANIMATOR_H_
#define IOS_CHROME_BROWSER_COMPOSEBOX_UI_COMPOSEBOX_PRESENT_ANIMATOR_H_
#import <UIKit/UIKit.h>
#import "ios/chrome/browser/composebox/public/composebox_animation_base.h"
#import "ios/chrome/browser/composebox/ui/composebox_animation_context.h"
@interface ComposeboxPresentAnimator
: NSObject <UIViewControllerAnimatedTransitioning>
@property(nonatomic, assign) BOOL toggleOnAIM;
- (instancetype)initWithContext:(id<ComposeboxAnimationContext>)context
animationBase:(id<ComposeboxAnimationBase>)animationBase;
@end
#endif