interface Props { /** Add an ID to target with SCSS. */ id?: string; /** Add a class to target with SCSS. */ class?: string; /** * Label placed directly above the sponsorship ad */ adLabel?: string; } /** * A compact sponsor-logo ad slot with an optional label above — the smallest of the ad units. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-ads-analytics-sponsorshipad--docs) */ declare const SponsorshipAd: import("svelte").Component; type SponsorshipAd = ReturnType; export default SponsorshipAd;