import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const ListboxSwitchItem = "ax-listbox-switch-item"; type ListboxSwitchItemProps = 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 { [ListboxSwitchItem]: ListboxSwitchItemProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof ListboxSwitchItemProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [ListboxSwitchItem]: ListboxSwitchItemProps & Omit<(ComponentPropsWithoutRef<"div">), keyof ListboxSwitchItemProps>; } } } export { ListboxSwitchItem }; export type { ListboxSwitchItemProps };