import { RelationshipLink } from "./RelationshipLink"; import { Type } from "./Type"; export declare class Link { title?: string; href: string; rel: RelationshipLink; type?: Type; hreflang?: string; static fromJson(jsonObj: any): Link; }