import { type ReactNode } from 'react'; import type { AnnotationContextType } from '../types'; export type AnnotationProps = Pick & { /** Annotation children (Subject, Label, Connector) */ children: ReactNode; }; export default function Annotation({ x, y, dx, dy, children }: AnnotationProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Annotation.d.ts.map