import { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface DialogContentProps extends HTMLAttributes { /** * Applies a visual shadow to the dialog panel. * Adds depth and separation from the background. */ shadowed?: boolean; /** * Ref forwarded to the dialog’s root element. * Useful for managing focus, animations, or measurements. */ ref?: Ref; /** * The children nodes to render inside the dialog. */ children?: ReactNode; } /** The DialogContent component is the main container for a dialog dialog’s content, supporting layout options like blurred overlays, shadows, fluid width, and overlaid positioning to control its appearance and behavior */ export declare const DialogContent: FC;