/** * Trigger leaf for the ChatActions compound. * * @module react/components/chat/chat-actions-trigger */ import * as React from "react"; import type { ChatActionsSlottedTriggerProps, ChatActionsTriggerProps } from "./chat-actions.types.js"; /** * `ChatActions.Trigger` renders through the dropdown's `asChild` slot. Custom * children receive trigger props and classes; the childless path renders the * standard `+` button. */ export declare function ChatActionsTrigger(triggerProps: ChatActionsSlottedTriggerProps): React.ReactElement; export declare function ChatActionsTrigger(triggerProps: ChatActionsTriggerProps): React.ReactElement; export declare namespace ChatActionsTrigger { var displayName: string; } //# sourceMappingURL=chat-actions-trigger.d.ts.map