import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const DropdownMenuCheckboxItem = "ax-dropdown-menu-checkbox-item"; type DropdownMenuCheckboxItemProps = 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; "checked"?: false | true | "indeterminate"; "onCheckedChange"?: (checked: boolean) => void; "textValue"?: string; "text-value"?: string; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [DropdownMenuCheckboxItem]: DropdownMenuCheckboxItemProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof DropdownMenuCheckboxItemProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [DropdownMenuCheckboxItem]: DropdownMenuCheckboxItemProps & Omit<(ComponentPropsWithoutRef<"div">), keyof DropdownMenuCheckboxItemProps>; } } } export { DropdownMenuCheckboxItem }; export type { DropdownMenuCheckboxItemProps };