import { IRefiner } from "./IRefiner";
export interface ISearchQueryBuilder {
    getQuery(query: string, refiners: IRefiner<any>[]): string;
}
