import { BoxBaseProps } from '../base/boxBase'; /** * Props for {@link Content}. * Extends {@link BoxBaseProps} except for `elementClass` and `component`. * * @category Box */ export type ContentProps = Omit; /** * Layout wrapper for the main article content. * * Renders a native div and forwards all layout props to {@link BoxBase}. * Intended as a structural container for Sections, typically paired with Aside. * * @function * @example *
* *
*
*
* *
* * @category Box */ export declare const Content: import('react').ForwardRefExoticComponent>;