import * as React from 'react'; declare type Props = { className?: string; height?: string; width?: MaxWidth; styles?: {}; }; declare enum MaxWidth { extrasmall = "400px", small = "600px", medium = "960px", large = "1280px", extralarge = "1920px" } declare type ContainerT = { size?: 'extrasmall' | 'small' | 'medium' | 'large' | 'extralarge'; } & Props; declare const Container: React.FC; export declare const ShadowedContainerBase: import("styled-components").StyledComponent<"div", any, Props, never>; export declare const ShadowedContainer: React.FC; export default Container;