import { type HTMLAttributes, type MutableRefObject } from "react"; interface TriggerProps extends HTMLAttributes { targetTriggerElementRef: MutableRefObject; } /** * This component serves as a dummy trigger for radix dialog to be able to open * and to position the floating menu relative to the real trigger. The trigger * rendered here won't be visible, and the props that would be passed to it are * passed to the real trigger via the targetTriggerElementRef prop. */ export declare const PassthroughTrigger: (props: TriggerProps & import("react").RefAttributes) => import("react").ReactElement> | null; export {};