import React from 'react'; interface PopupArrowProps { styles: React.CSSProperties; attributes?: Record; setArrowRef: (value: HTMLDivElement) => void; } export declare function PopupArrow({ styles, attributes, setArrowRef }: PopupArrowProps): JSX.Element; export {};