import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const ListboxCheckboxItem = "ax-listbox-checkbox-item"; type ListboxCheckboxItemProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; "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; "onCheckedChange"?: (checked: boolean) => void; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [ListboxCheckboxItem]: ListboxCheckboxItemProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof ListboxCheckboxItemProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [ListboxCheckboxItem]: ListboxCheckboxItemProps & Omit<(ComponentPropsWithoutRef<"div">), keyof ListboxCheckboxItemProps>; } } } export { ListboxCheckboxItem }; export type { ListboxCheckboxItemProps };