//#region src/atlassian/confluence-url.d.ts /** * Confluence page URL → parsed components. * * Confluence URLs have the shape: * https:///wiki/spaces//pages/[/] * * The page ID is the canonical identifier for API calls; the rest of the * path is human-readable navigation. */ interface ParsedConfluenceUrl { /** Atlassian host (e.g., `"elfcosmetics.atlassian.net"`). */ host: string; /** Confluence page ID. */ pageId: string; /** Full URL as supplied. */ url: string; } declare function parseConfluenceUrl(url: string): ParsedConfluenceUrl; //#endregion export { parseConfluenceUrl as n, ParsedConfluenceUrl as t };