import { RequestArgs } from './request.args';
export interface SearchArgs extends RequestArgs {
    indexCatalogue: string;
    searchQuery: string;
    wordsMode: string;
    orderBy: string;
    culture: string;
    skip: number;
    take: number;
    searchFields: string;
    highlightedFields: string;
    scoringInfo: string;
    resultsForAllSites: boolean | null;
    filter: string;
    indexFields: string;
    webServicePath?: string;
    filterExpression?: string | null;
}
