export interface ISearchable { /** * */ search(by: string): Array; /** * */ toggleSearch(): void; /** * */ isSearching(): boolean; }