import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const DropdownMenuItem = "ax-dropdown-menu-item"; type DropdownMenuItemProps = BoxProps & { "addonAfter"?: string | number | false | true; "addon-after"?: string; "addonBefore"?: string | number | false | true; "addon-before"?: string; "icon"?: string | number | false | true; "intent"?: "danger" | "neutral"; "description"?: string | number | false | true; "asChild"?: false | true; "as-child"?: false | true; "disabled"?: false | true; "onSelect"?: (event: Event) => void; "textValue"?: string; "text-value"?: string; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [DropdownMenuItem]: DropdownMenuItemProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof DropdownMenuItemProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [DropdownMenuItem]: DropdownMenuItemProps & Omit<(ComponentPropsWithoutRef<"div">), keyof DropdownMenuItemProps>; } } } export { DropdownMenuItem }; export type { DropdownMenuItemProps };