import React from "react"; import type { BaseTriggerProps } from "./types"; interface SplitTriggerOwnProps extends BaseTriggerProps { /** Ref forwarded to the action button (left side). */ actionButtonRef?: React.Ref; } /** * Radix injects extra props (aria-expanded, data-state, …) via Slot on the * DropdownMenuTrigger child. We capture them with a rest-spread. */ type SplitTriggerProps = SplitTriggerOwnProps & Omit, keyof SplitTriggerOwnProps>; declare const SplitTrigger: React.ForwardRefExoticComponent & React.RefAttributes>; export { SplitTrigger };