#ifndef IOS_WEB_VIEW_INTERNAL_AUTOFILL_CWV_AUTOFILL_SUGGESTION_INTERNAL_H_
#define IOS_WEB_VIEW_INTERNAL_AUTOFILL_CWV_AUTOFILL_SUGGESTION_INTERNAL_H_
#import "ios/web_view/public/cwv_autofill_suggestion.h"
NS_ASSUME_NONNULL_BEGIN
@class FormSuggestion;
@interface CWVAutofillSuggestion ()
- (instancetype)initWithFormSuggestion:(FormSuggestion*)formSuggestion
formName:(NSString*)formName
fieldIdentifier:(NSString*)fieldIdentifier
frameID:(NSString*)frameID
isPasswordSuggestion:(BOOL)isPasswordSuggestion
NS_DESIGNATED_INITIALIZER;
@property(nonatomic, readonly) FormSuggestion* formSuggestion;
@end
NS_ASSUME_NONNULL_END
#endif