import { type SVGProps } from 'react'; import { type TooltipPlacement } from '../Tooltip.types'; type ArrowIconProps = { placement: TooltipPlacement; } & SVGProps; export declare const ArrowIcon: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};