/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type ReactNode } from 'react';
interface PopoverTargetProps {
    /**
     * The content to be rendered in `PopoverTarget`. This is intended to be the element you want to point the spotlight at.
     */
    children: ReactNode;
}
/**
 * __Target__
 *
 * A target is the element that the popover content will be positioned in relation to.
 */
export declare const PopoverTarget: ({ children }: PopoverTargetProps) => JSX.Element;
export {};
