import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const ListboxItemIndicator = "ax-listbox-item-indicator"; type ListboxItemIndicatorProps = BoxProps & { "active"?: false | true; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [ListboxItemIndicator]: ListboxItemIndicatorProps & Omit<(JSXBase.IntrinsicElements["svg"]), keyof ListboxItemIndicatorProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [ListboxItemIndicator]: ListboxItemIndicatorProps & Omit<(ComponentPropsWithoutRef<"svg">), keyof ListboxItemIndicatorProps>; } } } export { ListboxItemIndicator }; export type { ListboxItemIndicatorProps };