import { Primitive } from "../../../utils/Primitive.js"; import { type ComponentRef, type ComponentPropsWithoutRef, type ReactNode } from "react"; import type { Unstable_TriggerItem } from "@assistant-ui/core"; export declare namespace ComposerPrimitiveTriggerPopoverItems { type Element = ComponentRef; type Props = Omit, "children"> & { children: (items: readonly Unstable_TriggerItem[]) => ReactNode; }; } /** * Renders the list of items within a category or search results via a render function. * Only renders when a category is active or search mode is on. */ export declare const ComposerPrimitiveTriggerPopoverItems: import("react").ForwardRefExoticComponent & import("react").HTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref">, "children"> & { children: (items: readonly Unstable_TriggerItem[]) => ReactNode; } & import("react").RefAttributes>; export declare namespace ComposerPrimitiveTriggerPopoverItem { type Element = ComponentRef; type Props = ComponentPropsWithoutRef & { item: Unstable_TriggerItem; index?: number | undefined; }; } /** * A button that selects a trigger item. * Automatically receives `data-highlighted` when keyboard-navigated. */ export declare const ComposerPrimitiveTriggerPopoverItem: import("react").ForwardRefExoticComponent & import("react").ButtonHTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref"> & { item: Unstable_TriggerItem; index?: number | undefined; } & import("react").RefAttributes>; //# sourceMappingURL=TriggerPopoverItems.d.ts.map