interface Props { /** * Canonical URL to share. When omitted, the live `window.location.href` is * read at click time so a shared link reproduces the reader's current view. */ url?: string; /** Headline used as the share text and email subject. */ headline?: string; /** Destination for the "Purchase Licensing Rights" button. */ licensingUrl?: string; /** Hide the "Purchase Licensing Rights" button when false. */ showLicensing?: boolean; /** ID on the containing block. */ id?: string; /** Extra classes on the containing block. */ class?: string; } /** * A row of social share buttons (X, Facebook, LinkedIn, email, copy link) plus an optional licensing button, mirroring Reuters.com's share toolbar. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-furniture-sharebar--docs) */ declare const ShareBar: import("svelte").Component; type ShareBar = ReturnType; export default ShareBar;