import { FilterComponent } from "../FilterComponent";
export interface IFilterTransformer<T> {
    transform(filters: FilterComponent[]): T;
}
