import { FC, HTMLAttributes, Ref } from 'react';
export interface SheetContentProps extends HTMLAttributes {
/**
* Ref forwarded to the root sheet container.
* Useful for focus management, measurement, or animation hooks.
*/
ref?: Ref;
/**
* Applies a visual shadow to the sheet panel.
* Adds depth and separation from the background.
*/
shadowed?: boolean;
}
/** The SheetContent component is the main container for a sliding sheet or bottom drawer, supporting scrollable content, overlays, headers, and visibility toggling for responsive, layered UI panels */
export declare const SheetContent: FC;