import type { FC, HTMLAttributes, Ref } from 'react';
export interface PageContentProps extends HTMLAttributes {
ref?: Ref;
}
/**
* Scrollable content area that fills the remaining vertical space.
* Use `min-h-0` to allow flex-based shrinking within a `fixedHeight` Page.
*/
export declare const PageContent: FC;