import { AttributeInfo } from '../internal/attributeInfo'; import { BordersCollection } from './bordersCollection'; import { WordsResponse } from './wordsResponse'; export declare const importsMapBordersResponse: { BordersCollection: typeof BordersCollection; WordsResponse: typeof WordsResponse; }; /** * The REST response with a collection of borders. * This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests. */ export declare class BordersResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of borders. */ borders: BordersCollection; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }