import type { Link, Link_Rel } from 'ricos-schema'; export declare class RicosLink { private readonly link; private constructor(); toLink(): Link; toHtmlAttributes(): { url: string; rel: string; target: string; }; static getLinkDefaults(): { link: { target: string; url: string; anchor: string; rel: { nofollow: null; sponsored: null; ugc: null; noreferrer: null; }; customData: null; }; }; static of(url: string, target?: string, rel?: string, linkRel?: Link_Rel): RicosLink; static fromLink(link: Link): RicosLink; setUrl(url: string): RicosLink; } //# sourceMappingURL=models.d.ts.map