export declare class HateoasCache { static instance: HateoasCache; private _cache; constructor(); get(href: string): any; set(href: string, data: any): void; has(href: string): boolean; delete(href: string): void; clear(): void; }