import { FC, HTMLAttributes, PropsWithChildren, Ref } from 'react'; export interface SheetMainProps extends HTMLAttributes { /** * Ref forwarded to the root main content element. * Useful for focus management, scrolling, or measuring content dimensions. */ ref?: Ref; } /** The SheetMain component represents the primary content area of a sheet. It provides a flexible, scrollable region for displaying structured content, forms, or interactive elements, ensuring consistent layout and seamless integration with header, footer, and handle components. */ export declare const SheetMain: FC>;