import { CSSProperties } from "react"; import type { TooltipPlacements } from "../types"; interface NvTooltipArrowProps { placement: TooltipPlacements; popperStyles: CSSProperties; } /** * Renders the arrow component for the NvTooltip. * * @param placement The placement of the arrow. Defaults to "auto". * @param popperStyles Custom styles for the arrow. * @param ref Reference to the arrow element. * @returns The arrow component with specified placement and styles. */ export declare const NvTooltipArrow: import("react").ForwardRefExoticComponent>; export {};