import React, { ReactNode } from 'react'; export declare type ContainerSize = 'small' | 'medium' | 'large'; export interface Props { /** * Container size. Body text should be in a small container to reduce line width and make reading easier. */ size?: ContainerSize; 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;