import { Rectangle } from "./rectangle"; import { Color } from "./color"; import { LinkHighlightingMode } from "./linkHighlightingMode"; import { LinkActionType } from "./linkActionType"; import { LinkElement } from "./linkElement"; export declare class LinkAnnotation extends LinkElement { 'actionType': LinkActionType; 'action': string; 'highlighting': LinkHighlightingMode; 'color': Color; 'rect': Rectangle; 'id': string; static discriminator: any; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }