export type Links = { [K: string]: string | Link | Links; }; export declare class Link { static readonly REL_SELF = "self"; href?: string; name?: string; type?: string; templated: boolean; profile?: string; title?: string; hreflang?: string; static serialize(links: Links): Links; } //# sourceMappingURL=link.d.ts.map