/** * Normalizes links inside Staffbase-rendered HTML so they behave better in mobile * apps. On iOS, absolute same-origin links and/or `target="_blank"` can trigger * Safari instead of in-app navigation; for same-origin links we rewrite to * relative paths and remove target/rel. Ported from staffbase-alerts (the * superset): cross-origin `target="_blank"` links are hardened with * `rel="noopener noreferrer"` instead of left untouched. The Staffbase origin is * passed in (the lib never reads env). * @param {HTMLElement} root - The container whose anchors are normalized. * @param {string} staffbaseOrigin - The Staffbase origin used to detect same-origin links. * @returns {void} */ export declare const normalizeInAppLinks: (root: HTMLElement, staffbaseOrigin: string) => void; //# sourceMappingURL=normalizeInAppLinks.d.ts.map