import { type FC, type ReactNode } from 'react';
interface PopoverPanelProps {
    alt?: string;
    children?: ReactNode;
    title?: string;
    url?: string;
    usePopover?: boolean;
}
declare const PopoverPanel: FC<PopoverPanelProps>;
export default PopoverPanel;
