import { XmlAttributeComponent } from '../../xml-components'; export interface IHyperlinkAttributesProperties { readonly id?: string; readonly anchor?: string; readonly history: number; } export declare class HyperlinkAttributes extends XmlAttributeComponent { protected readonly xmlKeys: { id: string; history: string; anchor: string; }; }