import React, { HTMLAttributes } from "react";
import { PropsWithChildren } from "react";
export interface ContainerProps extends HTMLAttributes {
size?: 'fluid' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
}
declare const Container: ({ children, size, className, ...props }: PropsWithChildren) => React.JSX.Element;
export default Container;