import { ButtonProps } from '../../../components/Button'; import { DataTrackingId } from '../../../types'; /** * Props for the PopoverButton component. * @extends ButtonProps */ export type PopoverButtonProps = ButtonProps & DataTrackingId; /** * PopoverButton component for creating button-style triggers. * * Features: * - Button styling and behavior with all Button props * - ARIA attributes and event handlers injected via getReferenceProps * - Automatic tracking ID generation for analytics * * @example * Click to open * * @example * * Information * */ export declare const PopoverButton: import('react').ForwardRefExoticComponent>;