import { default as React } from 'react'; import * as PopoverPrimitive from '@radix-ui/react-popover'; export type TriggerProps = React.ComponentPropsWithoutRef & { children: React.ReactNode; }; /** The button that toggles the popover. By default, the Popover.Content will position itself against the trigger. */ export declare const Trigger: React.ForwardRefExoticComponent, "ref"> & { children: React.ReactNode; } & React.RefAttributes>;