import { type CSSProperties, type ElementType, type ReactNode, type Ref } from 'react'; import { type CssLength } from '../../../utils/css'; type CalloutArrowProps = { label?: ReactNode; as?: ElementType; size?: CssLength; rotation?: number; labelRotation?: number; className?: string; labelClassName?: string; arrowClassName?: string; style?: CSSProperties; ref?: Ref; }; declare const CalloutArrow: ({ label, as: Component, size, rotation, labelRotation, className, labelClassName, arrowClassName, style, ref, }: CalloutArrowProps) => import("react/jsx-runtime").JSX.Element; export { CalloutArrow }; export type { CalloutArrowProps };