import { ButtonProps } from '../../../components/Button'; import { DataTrackingId } from '../../../types'; /** * Props for the PopoverClose component. * @extends ButtonProps */ export type PopoverCloseProps = ButtonProps & DataTrackingId; /** * PopoverClose component for closing the popover. * * Features: * - Supports all Button component props and styling * - Closes the popover on click via closePopover * - Automatic tracking ID generation for analytics * * @example * Close * * @example * * Cancel * */ export declare const PopoverClose: import('react').ForwardRefExoticComponent>;