import { ButtonHTMLAttributes, FC, Ref } from 'react'; export interface PopoverTriggerProps extends ButtonHTMLAttributes { /** * If true, renders the trigger as a child element using a `Slot`. * Allows custom elements like `` or `
` to behave as a popover trigger. */ asChild?: boolean; /** * Ref forwarded to the underlying trigger element. * Useful for focus control, measurement, or integrations. */ ref?: Ref; } /** The PopoverTrigger component is the interactive element—typically a button or slotted custom element—that toggles the visibility of a Popover, supporting flexible rendering through the asChild prop */ export declare const PopoverTrigger: FC;