import { default as React } from 'react'; import { StyleProps, PolymorphicProps } from '../../style-engine'; declare const containerStyles: import('../../style-engine').StylesDef<{ size: { sm: string; md: string; lg: string; xl: string; '2xl': string; fluid: string; }; }>; type ContainerVariantProps = StyleProps; export type ContainerProps = PolymorphicProps; export declare function Container({ as, children, size, className, ...props }: ContainerProps): React.JSX.Element; export {};