import { PageContentRoot, PageContentColumn } from './components'; /** * PageContent * ============================================================ * A layout component that provides max-width content containers with single * and multi-column layout support. Consolidates MC's `PageContentWide`, * `PageContentNarrow`, and `PageContentFull` into a single compound component. * * @example * ```tsx * // Single column * * {children} * * * // Multi-column with sticky sidebar * * Main content * Sidebar * * ``` */ export declare const PageContent: { /** * # PageContent.Root * * The root container that enforces width constraints and column layout. * Uses a CSS grid centering pattern with configurable min/max widths. * * @example * ```tsx * * Left * Right * * ``` */ Root: { ({ ref, children, ...props }: import('./page-content.types').PageContentProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** * # PageContent.Column * * A column within a multi-column PageContent layout. Supports sticky * positioning for sidebar patterns. Use with `columns="1/1"` or * `columns="2/1"` on Root. * * @example * ```tsx * * Main content * Sidebar * * ``` */ Column: { ({ ref, children, sticky, ...props }: import('./page-content.types').PageContentColumnProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export { PageContentRoot as _PageContentRoot, PageContentColumn as _PageContentColumn, };