/** Application routes that may be restored after the one Xpod login transaction. */ export declare const XPOD_RETURN_PATH_PREFIXES: readonly ["/dashboard", "/status", "/network", "/settings", "/ai-config", "/ai-connections"]; export declare const XPOD_PRODUCT_ALIASES: {}; export type XpodProductAlias = keyof typeof XPOD_PRODUCT_ALIASES; /** * Keep API aliases and the client callback on the same application-relative path policy. * Query strings are intentionally retained; fragments are not part of an HTTP request URL. */ export declare function normalizeXpodReturnPath(value: string | undefined): string | undefined; export declare function resolveXpodAliasTarget(alias: XpodProductAlias, requestUrl: string): string;