import type { Snippet } from 'svelte'; interface Props { /** * Set to `true` if the parent container is fluid. */ containerIsFluid?: boolean; /** * Content to be padded. */ children: Snippet; } /** * Re-applies the article's horizontal padding to content inside a fluid, full-width Block so captions stay aligned to the text gutter. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-layout-paddingreset--docs) */ declare const PaddingReset: import("svelte").Component; type PaddingReset = ReturnType; export default PaddingReset;