import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const ListboxItemized = "ax-listbox-itemized"; type ListboxItemizedProps = BoxProps & { "empty"?: string | number | false | true; "highlightedItem"?: any; "highlighted-item"?: any; "items"?: any[] | readonly any[]; "itemToKey"?: (item: any) => string; "item-to-key"?: (item: any) => string; "loading"?: "both" | "skeleton" | "spinner"; "onPlacedChange"?: (placed: boolean) => void; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [ListboxItemized]: ListboxItemizedProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof ListboxItemizedProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [ListboxItemized]: ListboxItemizedProps & Omit<(ComponentPropsWithoutRef<"div">), keyof ListboxItemizedProps>; } } } export { ListboxItemized }; export type { ListboxItemizedProps };