import { type ElementType } from 'react'; import type { DropdownMenuItemProps } from './types'; /** * An actionable item within the dropdown menu. * Triggers its onSelect callback and closes the menu upon activation. */ export declare const DropdownMenuItem: { ({ as, role: roleProp, onSelect, disabled, textValue, onPointerMove, onPointerLeave, onFocus, onClick, onKeyDown, ref, id: idProp, ...props }: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element; displayName: string; };