import type { ElementType } from "react"; import type { CompositeItemOptions } from "../composite/composite-item-offscreen.tsx"; import type { Props } from "../utils/types.ts"; import * as Base from "./combobox-item.tsx"; declare const TagName = "div"; type TagName = typeof TagName; export declare function useComboboxItemOffscreen>({ store, value, ...props }: P): { id: string | undefined; active: boolean; ref: import("react").RefCallback; "data-offscreen": true | undefined; } | { role: string; id: string | undefined; active: boolean; ref: import("react").RefCallback; "data-offscreen": true | undefined; }; export declare const ComboboxItem: ({ offscreenMode, offscreenRoot, ...props }: ComboboxItemProps) => import("react/jsx-runtime").JSX.Element; export interface ComboboxItemOptions extends Base.ComboboxItemOptions, Omit, "store"> { } export type ComboboxItemProps = Props>; export {};