import React from 'react'; import type { ComposableProps } from '../../../lib/slot'; /** * PopoverClose component props * * @public */ export interface PopoverCloseProps extends Omit, 'children'> { /** * Custom close button content (optional) * If not provided, uses default close icon */ children?: React.ReactNode; } /** * PopoverClose Component * * A composable close button for the popover. * Automatically closes the popover when clicked. * * @public * * @example * ```tsx * * *

Popover content

*
* * // Custom close button * * * * ``` * * @remarks * - Automatically handles closing the popover * - Supports `asChild` prop to merge with custom button * - Uses default close icon if no children provided * - Accessible: includes proper ARIA labels */ export declare const PopoverClose: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopoverClose.d.ts.map