interface Props { /** A markdown text string. */ text: string; /** Add a class to target with SCSS. */ class?: string; /** Add an id to the block tag to target it with custom CSS. */ id?: string; } /** * A body-copy block that renders a markdown string into styled article prose. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-text-elements-bodytext--docs) */ declare const BodyText: import("svelte").Component; type BodyText = ReturnType; export default BodyText;