import type { RouteOptionsParam } from './types'; /** * API to return proper semantic url by removing global parameters like portal, noPortal, debug * @param url Input url which should be sanitized by removing global query params * @returns Proper semantic url by removing global parameters like portal and noPortal */ export declare const getSemanticURLWithRelatedQueryParams: (url: string) => string; export declare const getAssignmentRouteInfo: (url: string, optionsParam?: RouteOptionsParam) => { routeEndpoint: string | undefined; requestType: string | undefined; payload: { assignmentID: string; }; options: RouteOptionsParam | undefined; routeKey: string; urlPath: string; }; export declare const resolveRouteInfoParams: (url: string, optionsParam?: RouteOptionsParam) => any; export declare const isNextGenLandingPageRouting: () => boolean;