import React from 'react'; import { BoxProps } from '../Box/Box'; type Props = React.PropsWithChildren & BoxProps & { centered?: boolean; padded?: boolean; }; export declare const Container: React.FC; export {};