import type { FC } from "react"; import type { BoxProps } from "../Box"; /** * A styled Box component intended to be used as a "section" in a panel. You can * combine this with other instances of itself or with nested Panels to create a * single Panel layout. Use this when you don't want to include a title or other * controls for the section content, or for a single section of content inside a * Panel. * * ``` * * * * * ... * ; * ``` * * Use of the PanelContent control is optional and can be omitted to have more * direct control over the styling of the Panel content. */ declare const PanelContent: FC; export default PanelContent;