import { AnnotationPoint3D } from "./AnnotationPoint3D"; import { AnnotationRect } from "./AnnotationRect"; export declare class AnnotationGroup { canvasId: string; canvasIndex: number; rects: AnnotationRect[]; points3D: AnnotationPoint3D[]; constructor(canvasId: string); addRect(anno: any): void; addPoint3D(anno: any): void; }