import React, { ReactNode } from "react"; interface Props { /** * Container size. Body text should be in a small container to reduce line width and make reading easier. */ size?: "small" | "medium" | "large"; noMargin?: boolean; noPadding?: boolean; noPaddingTop?: boolean; extraPaddingTop?: boolean; extraMarginBottom?: boolean; whiteBg?: boolean; overlappingFullWidthImage?: boolean; children?: ReactNode; } /** * Status: *in progress* * Category: Misc * * There are three main container widths: small, medium and large. Body text should be in a small container to reduce line width and make reading easier. */ declare const Container: React.FC, HTMLDivElement>>; export default Container;