import type { Snippet } from 'svelte'; interface Props { /** Optional title block rendered above the stage. */ header?: Snippet; /** The main visual (a map, chart, image, etc.). */ stage: Snippet; /** Optional content rendered below the stage. */ footer?: Snippet; /** * Height of the stage, in pixels, for self-contained visuals (SVGs, maps) * that fill a known box. Pass `'auto'` to let the stage grow with its * content instead — use this for self-sizing embeds like Datawrapper * charts or a responsive multi-column layout. */ stageHeight?: number | 'auto'; /** Extra class on the root element. */ class?: string; } /** * A frame for iframed embeds in Reuters.com's Arc CMS, providing the light theme, Arc font, Pym.js resizing and a header/stage/footer layout. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-embeds-arccluster--docs) */ declare const ArcCluster: import("svelte").Component; type ArcCluster = ReturnType; export default ArcCluster;