import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
export interface AttributeActionsTargetProps extends HTMLAttributes {
ref?: Ref;
children: ReactNode;
/**
* When true, descendants are rendered `inert` — they cannot be clicked,
* focused, or read by assistive tech as actionable. Any interaction with the
* target (mouse or keyboard) opens the AttributeActions dropdown.
*
* Default `false` — descendants keep their own behavior; clicking them does
* not open the dropdown. The dropdown opens only when the surrounding target
* area is clicked.
*/
disableNestedInteractive?: boolean;
}
export declare const AttributeActionsTarget: FC;