/** Register virtual pageviews when using client-side routing in multipage applications. */ declare function registerPageview(): void; export { registerPageview }; interface Author { name: string; } interface Props { /** * Used to associate a page with its author(s) in Chartbeat. */ authors?: Author[]; } /** * Initialises page analytics (Google Analytics, Chartbeat, Google Tag Manager) on mount; exports `registerPageview()` for client-side route changes. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-ads-analytics-analytics--docs) */ declare const Analytics: import("svelte").Component; type Analytics = ReturnType; export default Analytics;