export interface IMatchableProduct { product: TProduct; matches(product: TProduct): boolean; filter(filter: TProductFilter): boolean; }