/** * Returns the active context (org, workspace, project, tenant) as a * URLSearchParams ready to be appended to a navigation path. * * Use this when constructing internal links in chrome / sidenav / header / * command palette so the first navigation already carries the correct * context. Without it, the ActiveContextProvider re-syncs context after the * page mounts and produces a second navigation that feels like a reload. */ export declare function useCurrentContextSearchParams(): URLSearchParams; /** * Merge the current context into a target path. Existing query params on the * target take precedence — context values are only added when the target * doesn't already specify them. */ export declare function appendContextToPath(path: string, ctxParams: URLSearchParams): string; //# sourceMappingURL=useCurrentContextSearchParams.d.ts.map