interface ColumnWidths { /** Narrower column width */ narrower: number; /** Narrow column width */ narrow: number; /** Normal column width */ normal: number; /** Wide column width */ wide: number; /** Wider column width */ wider: number; } interface Props { /** Set to true for embeddables. */ embedded?: boolean; /** Add an id to the article tag to target it with custom CSS. */ id?: string; /** ARIA role of the article */ role?: string | null; /** Set custom widths for the normal, wide and wider column dimensions */ columnWidths?: ColumnWidths; children?: import('svelte').Snippet; } /** * The top-level wrapper for a graphics story, rendering `
`/`
` with configurable column widths and an embedded mode for embeds. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-layout-article--docs) */ declare const Article: import("svelte").Component; type Article = ReturnType; export default Article;