import { Decoration } from "@tiptap/pm/view"; import { Annotation } from "../../contracts"; export declare class AnnotationDecoration implements Annotation { private decoration; constructor(decoration: Decoration); get displayName(): string; get tag(): string; get id(): any; get from(): any; get to(): any; get selectedText(): any; get data(): K; get HTMLAttributes(): any; toString(): string; }