/** * Initializes the Intlayer analytics client singleton when analytics is * enabled (mirrors {@link useEditor}). Records an initial page view, keeps the * client aware of the current locale via `intlayerStore`, and wires node-level * content exposures. * * The module is loaded via a dynamic `import()` so it ships as its own async * chunk, off the critical rendering path. Apps that don't opt in * (`analytics.enabled !== true`) pay nothing — the whole body is guarded by * `INTLAYER_ANALYTICS_ENABLED` and dead-code-eliminated at build time. */ export declare const useAnalytics: () => void;