import React from "react"; import type { PolymorphicWithRef, ContainerOwnProps } from "../types"; export declare type ContainerProps = PolymorphicWithRef; export declare type ContainerElement = (props: ContainerProps) => React.ReactElement>; /** * **A Container is used to contain elements inside a specific width.** \ * By default the maxWidth set to `lg` (1240px) */ declare const Container: ContainerElement; export default Container; //# sourceMappingURL=Container.d.ts.map