import type { ReactNode } from 'react'; export declare type TPopover = { hPadding?: number; vPadding?: number; arrowPosition?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; children: ReactNode; onClose?: () => void; }; export declare const Popover: import("refun").TComponent;