interface Props { /** * The project's fully-qualified base URL (origin + trailing slash). Only its origin is used, to build the canonical and og:url tags. In graphics kit projects this is injected at build time as the global `__BASE_URL__` — no import needed. */ baseUrl: string; /** * [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) object for the page. */ pageUrl: URL; /** * Path to an image used to preview the embed in Reuters Connect. **Must be an absolute path.** */ previewImgPath: string; /** * Pym.js polling interval, passed through to the `PymChild` component. */ polling?: number; } /** * Renders the minimal metadata an embed (iframe) page needs — canonical link, `og:image`, and a `noindex, nofollow, noarchive` robots tag — and mounts a Pym.js child so the embed resizes inside its parent frame. Use instead of `SEO` on embed pages. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-metadata-embedmetadata--docs) */ declare const EmbedMetadata: import("svelte").Component; type EmbedMetadata = ReturnType; export default EmbedMetadata;