Editor/ISearchProvider.cs
using System.Collections.Generic;

public interface ISearchProvider
{
	IEnumerable<SearchResult> Search( string query );
}