import React from "react";
import PropTypes from "prop-types";
interface Props {
    className?: string;
    fluid?: boolean;
    size?: string;
    tag?: [Function, string];
    children?: React.ReactNode;
}
declare const Container: {
    (props: Props): JSX.Element;
    propTypes: {
        className: PropTypes.Requireable<string>;
        fluid: PropTypes.Requireable<boolean>;
        size: PropTypes.Requireable<string>;
        tag: PropTypes.Requireable<string | ((...args: any[]) => any)>;
    };
    defaultProps: {
        tag: string;
        fluid: boolean;
    };
};
export default Container;
export { Container as CDBContainer };
