import * as React from 'react'; import type { GenericHTMLProps } from '../../utils/types'; export declare function usePopoverArrow(params: usePopoverArrow.Parameters): usePopoverArrow.ReturnValue; declare namespace usePopoverArrow { interface Parameters { arrowStyles: React.CSSProperties; hidden?: boolean; } interface ReturnValue { getArrowProps: (externalProps?: GenericHTMLProps) => GenericHTMLProps; } } export {};