import { AttributeInfo } from '../internal/attributeInfo'; import { Hyperlink } from './hyperlink'; import { WordsResponse } from './wordsResponse'; export declare const importsMapHyperlinkResponse: { Hyperlink: typeof Hyperlink; WordsResponse: typeof WordsResponse; }; /** * The REST response with a hyperlink. * This response should be returned by the service when handling: GET /{name}/hyperlinks/{hyperlinkIndex}. */ export declare class HyperlinkResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the hyperlink. */ hyperlink: Hyperlink; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }