import React from 'react'; declare type ClassesType = { root?: string; arrowLeft?: any; arrowRight?: any; }; declare type PopoverPanelProps = { className?: string; right?: boolean; classes?: ClassesType; top?: string | number; left?: string | number; zIndex?: number; } & React.HTMLAttributes; export declare const PopoverPanel: React.FC; export {};