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