import { VerticalAlignment } from "./verticalAlignment"; import { HorizontalAlignment } from "./horizontalAlignment"; import { Rectangle } from "./rectangle"; import { AnnotationFlags } from "./annotationFlags"; import { Color } from "./color"; import { LinkElement } from "./linkElement"; export declare class Annotation extends LinkElement { 'color': Color; 'contents': string; 'modified': string; 'id': string; 'flags': Array; 'name': string; 'rect': Rectangle; 'pageIndex': number; 'zIndex': number; 'horizontalAlignment': HorizontalAlignment; 'verticalAlignment': VerticalAlignment; static discriminator: any; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }