/** * Parses the given pathname and extracts information about the contextPath, prefix, domain, and path. * * @param {string} pathname - The pathname to parse. * @returns {object} - An object containing the parsed information: * - contextPath: The context path portion of the pathname. * - prefix: The prefix portion of the pathname. * - domain: The domain portion of the pathname. * - path: The remaining path after contextPath, prefix, and domain. */ export declare function getPathInfo(pathname: string): { contextPath: string; prefix: string; domain: string; subdomain: string; path: string | undefined; }; /** * Sets the context path prefix used for parsing pathnames. * * @param {string} contextPathPrefix - The new context path prefix to set. */ export declare function setContextPathPrefix(contextPathPrefix?: string): void;