@class NSArray, NSString, NSMutableArray; @protocol SGSuggestionDelegate; @interface SGSuggestionStore : SGList { NSMutableArray *_suggestions; long long _notificationsLockCount; BOOL _modified; } @property (copy, nonatomic) NSArray *suggestions; @property (weak, nonatomic) id suggestionDelegate; @property (nonatomic) long long hostApp; @property (readonly) unsigned long long hash; @property (readonly) Class superclass; @property (readonly, copy) NSString *description; @property (readonly, copy) NSString *debugDescription; - (id)init; - (void).cxx_destruct; - (void)addSuggestion:(id)a0; - (void)dismissAllSuggestions; - (void)removeSuggestion:(id)a0; - (void)list:(id)a0 didAddItem:(id)a1 atIndex:(unsigned long long)a2; - (void)list:(id)a0 didRemoveItem:(id)a1 atIndex:(unsigned long long)a2; - (void)lockNotifications; - (id)sectionWithItem:(id)a0; - (void)unlockNotifications; - (void)updateSuggestion:(id)a0; @end