import { ComponentPropsWithoutRef } from 'react';
/**
* Props for the PageContent component
* @extends ComponentPropsWithoutRef<"section">
*/
export type PageContentProps = ComponentPropsWithoutRef<"section">;
/**
* PageContent component for the main content area of a page.
*
* Features:
* - Renders as a section element inside Page's main landmark
* - Virtual scrolling support for long content
* - Automatic scroll synchronization
* - Responsive design
* - Portals into Page's content wrapper via context
* - Scroll position management
*
* @example
*
* Main page content goes here
*
*
*/
export declare const PageContent: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & import('react').RefAttributes>;