import type { ContainerWidth } from '../@types/global'; interface Props { /** * The unique identifier for the document. */ slug: string; /** * Alt text for the document. */ altText: string; /** * Width of the container, one of: normal, wide, wider, widest or fluid */ width?: ContainerWidth; /** Add an ID to target with SCSS. */ id?: string; /** Add a class to target with SCSS. */ class?: string; } /** * An embedded DocumentCloud document, referenced by slug in a sandboxed iframe and sized to a container width. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-multimedia-documentcloud--docs) */ declare const DocumentCloud: import("svelte").Component; type DocumentCloud = ReturnType; export default DocumentCloud;