/** * Copyright (c) Microsoft. All rights reserved. */ import { AnnotationData } from '../types/labelerTypes'; /** * This store contains the annotations that are displayed * in the labeler. Read more about how this store works to * support annotation resizing in `labelingStores.md`. */ export declare class LabelerAnnotationsStore { annotations: AnnotationData[]; private _tokenCount; constructor(); get annotationsPerTokenMap(): Map; initialize(tokenCount: number): void; setAnnotations(annotations: AnnotationData[]): void; startAnnotationResize(annotationId: string, startIndex: number, endIndex: number): void; stopAnnotationResize(): void; }