import { AnnotationMode } from '../../models';
import { default as AnnotationStatus } from '../../models/AnnotationStatus';
import { default as AnnotationTool } from '../../models/AnnotationTool';
import { Point } from '../../types';
declare class Annotation {
    internalId: number;
    externalId?: string;
    annoTime: number;
    coordinates: Point[];
    labelIds?: number[];
    mode: AnnotationMode;
    selectedNode: number;
    status: AnnotationStatus;
    type: AnnotationTool;
    constructor(internalId: number, type: AnnotationTool, coordinates: Point[], mode?: AnnotationMode, status?: AnnotationStatus, externalId?: string);
}
export default Annotation;
