import { ComponentProps } from '../internals/utils'; export type ContentProps = ComponentProps; /** * The Content component is used to wrap content in a themed container with a max-width. * @see https://rsuitejs.com/components/container/ * * For Internet Explorer 11 and lower, it's suggested that an ARIA role of "main" * be added to the
element to ensure it is accessible */ declare const Content: import("../internals/types").InternalRefForwardingComponent<"main", Partial, never> & Record; export default Content;