import { PropsOf, QRL } from "@builder.io/qwik"; export type DropdownItemProps = { /** Internal index we get from the inline component. Please see dropdown-inline.tsx */ _index?: number; /** If true, item is not selectable or focusable. */ disabled?: boolean; /** If true, dropdown will close after selecting the item. */ closeOnSelect?: boolean; /** * QRL handler that runs when the user selects an item. */ onClick$?: QRL<() => void>; } & Omit, "onCLick$">; export declare const HDropdownItem: import("@builder.io/qwik").Component;