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