import { PharosElement } from './pharos-element'; import type { PropertyValues } from 'lit'; export type LinkTarget = '_blank' | '_parent' | '_self' | '_top'; /** * The base anchor element class to house shared properties, styles, and methods. * */ export declare class AnchorElement extends PharosElement { /** * Indicates to save the linked URL instead of navigating to it. * @attr download */ download?: string; /** * Indicates the URL that the hyperlink points to. * @attr href */ href?: string; /** * Indicates the language of the linked URL. * @attr hreflang */ hreflang?: string; /** * Indicates the URLs to ping. * @attr ping */ ping?: string; /** * Indicates the type of link. * @attr rel */ rel?: string; /** * Indicates where to display the linked URL. * @attr target * @type {LinkTarget | undefined} */ target?: LinkTarget; protected update(changedProperties: PropertyValues): void; } //# sourceMappingURL=anchor-element.d.ts.map