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