import React from 'react'; import { BoxProps } from '../internals/Box'; export type ContainerProps = BoxProps & React.HTMLAttributes; export declare const ContainerContext: React.Context; interface ContainerContextValue { setHasSidebar?: (value: boolean) => void; } /** * The Container component is used to wrap content in a themed container with a max-width. * @see https://rsuitejs.com/components/container */ declare const Container: import("../internals/types").InternalRefForwardingComponent<"section", ContainerProps, never> & Record; export default Container;