import { IRefiner } from "./IRefiner";
import { ISearchSortProperty } from "./ISearchSortProperty";
export interface ISearchQuery {
    text: string;
    rowLimit?: number;
    cache?: boolean;
    refiners?: IRefiner<any>[];
    basicRefiners?: {
        key: string;
        value: string;
    }[];
    stringRefiners?: string[];
    extra?: any;
    sortList?: ISearchSortProperty[];
    selectProperties?: string[];
}
