import { OrientedBoundingBox } from "../bounding-box"; import { GraphicsAdapter } from "../graphics"; import { TransformableElement } from "./TransformableElement"; export type MLinkProps = { href: string | null; target: string | null; }; export declare class Link extends TransformableElement { static tagName: string; private linkGraphics; private abortController; props: MLinkProps; private static attributeHandler; static get observedAttributes(): Array; static isAcceptableHref(href: string): boolean; constructor(); parentTransformed(): void; isClickable(): boolean; attributeChangedCallback(name: string, oldValue: string | null, newValue: string): void; protected disable(): void; protected enable(): void; getContentBounds(): OrientedBoundingBox | null; connectedCallback(): void; disconnectedCallback(): void; } //# sourceMappingURL=Link.d.ts.map