interface HeightRangeAnnotationProps { height: number; top_height?: number; offsetX?: number; color?: string; lineInset?: number; circleRadius?: number; /** Draw the circle marking a note with no extent (default `true`) */ showPointMarker?: boolean; } declare function HeightRangeAnnotation(props: HeightRangeAnnotationProps): import('react').ReactElement<{ transform: string; }, string | import('react').JSXElementConstructor>; export { HeightRangeAnnotation };