import type { GjsContext } from "../../../../reconciler/gjs-renderer"; import type { HostContext } from "../../../../reconciler/host-context"; import type { DiffedProps } from "../../../utils/element-extenders/map-properties"; import type { MarkupElementProps } from "../markup-elem"; import { MSpanElement } from "./span"; export type MAnchorProps = MarkupElementProps & { href: string; }; export declare class MAnchorElement extends MSpanElement { readonly kind = "M_ANCHOR"; constructor(props: DiffedProps, context: HostContext); stringify(): string; }