import { CSSProperties } from 'react';
import { Label, Point } from '../../../types';
type AnnoBarProps = {
    annotationCoordinates: Point[];
    canLabel: boolean;
    color: string;
    labels: Label[];
    selectedLabelIds: number[];
    isSelected: boolean;
    svgScale: number;
    style: CSSProperties;
    onLabelIconClicked: (markerPosition: Point) => void;
};
declare const AnnoBar: ({ annotationCoordinates, canLabel, color, labels, selectedLabelIds, isSelected, svgScale, style, onLabelIconClicked, }: AnnoBarProps) => import("react/jsx-runtime").JSX.Element;
export default AnnoBar;
