import { AnnotationType } from "./AnnotationType"; import { ITextHighlight } from "./ITextHighlight"; import { IAreaHighlight } from "./IAreaHighlight"; import { IFlashcard } from "./IFlashcard"; import { IComment } from "./IComment"; import { ITextLike } from './Text'; export declare class AnnotationTexts { static toHTML(type: AnnotationType, annotation: ITextHighlight | IAreaHighlight | IComment | IFlashcard): string | undefined; static toText(type: AnnotationType, annotation: ITextHighlight | IAreaHighlight | IComment | IFlashcard): string | undefined; static toIText(type: AnnotationType, annotation: ITextHighlight | IAreaHighlight | IComment | IFlashcard): ITextLike | undefined; }