import { SearchBoxViewProps } from './search-box.view-props';
import { SearchBoxEntity } from './search-box.entity';
export declare function serializeScoringProfile(scoringProfile: {
    scoringSetting: string;
    scoringParameters: string;
}): string;
export declare function getSearchBoxParams(searchModel: SearchBoxViewProps<SearchBoxEntity>, orderBy: string): {
    resultsUrl: string | null;
    catalogue: string | null;
    scoringSetting: string;
    minSuggestionLength: number;
    siteId: string;
    culture: string;
    suggestionFields: string | null;
    servicePath: string;
    orderBy: string;
    resultsForAllSites: number;
};
export declare function getSearchUrl(query: string, searchModel: SearchBoxViewProps<SearchBoxEntity>, orderBy: string): string;
