import { FC, HTMLAttributes, Ref } from 'react';
export interface PopoverContentProps extends HTMLAttributes {
/**
* Applies a visual shadow to the component container.
* Adds elevation and depth, visually separating the content from the background.
*/
shadowed?: boolean;
/**
* Ref forwarded to the popover content element.
* Useful for focus management, animations, or measuring position.
*/
ref?: Ref;
}
/** The PopoverContent component defines the visible area of a Popover, supporting scroll locking, overlays, and visual effects like background blur, while rendering custom content inside a floating or overlaid panel */
export declare const PopoverContent: FC;