interface Props { /** Add an ID to target with SCSS. */ id?: string; /** Number of the inline ad in sequence. Use to add multiple inline ads to a page. */ n?: 1 | 2 | 3 | '1' | '2' | '3'; /** Add a class to target with SCSS. Defaults to `my-12`. */ class?: string; } /** * A native in-article ad slot marked as an advertisement; set `n` (1–3) to place several inline ads on one page. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-ads-analytics-inlinead--docs) */ declare const InlineAd: import("svelte").Component; type InlineAd = ReturnType; export default InlineAd;