import { ReactNode } from 'react';
interface PopoverPanelProps {
    alt?: string;
    children?: ReactNode;
    title?: string;
    url?: string;
    usePopover?: boolean;
}
declare const PopoverPanel: import("react").MemoExoticComponent<({ children, usePopover, title, alt, url }: PopoverPanelProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined>;
export default PopoverPanel;
