import { GuidedSearchState, Config } from '../models/interface'; declare const convertStringToDashed: (value?: string) => string; declare const nextQueryParam: (type: string) => []; declare const paramFactory: (type: any) => string; declare const queryParamFactory: (type: any) => string; declare const appendParam: (key: string, value: string, uri: URL, isBackButton: boolean) => void; declare const getURL: (key: string, value: string, uri: URL) => URL; declare const getParams: (uri: URL, state: GuidedSearchState, config: Config) => Promise; declare const addUrlPart: (type: any, title: any, array?: any[]) => { array: any[]; urlPart: string; }; export { addUrlPart, appendParam, convertStringToDashed, getParams, getURL, paramFactory, queryParamFactory, nextQueryParam, };