namespace Content.Client.Guidebook.Controls; public interface ISearchableControl { public bool CheckMatchesSearch(string query); /// /// Sets the hidden state for the control. In simple cases this could just disable/hide it, but you may want more complex behavior for some elements. /// public void SetHiddenState(bool state, string query); }