import type { PageType, UrlParams } from './types'; export declare function stringify(params: UrlParams): string; export declare function escapeFilterParam(param: string): string; export declare const IS_URL: RegExp; export declare function sanitizeHostUrl(hostUrl: string): string; export declare function santizeEmbedUrl(embedUrl: string): string; export declare function extractPageTypeFromUrl(url: string): PageType;